Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

$now = new DateTime("now"); $date_future = new DateTime("12-12-2023"); if ($now > $date_..

Decoded Output download

<?  $now = new DateTime("now"); 
$date_future = new DateTime("12-12-2023"); 
if ($now > $date_future) { 
	header("Content-Type: application/json; charset=UTF-8");     
	http_response_code(500); 
	echo json_encode(array('code'=>500, 'message'=>'The trial period has ended, please contact the developer for more info')); 
	exit(); 
} 
 ?>

Did this file decode correctly?

Original Code

$now = new DateTime("now");
$date_future = new DateTime("12-12-2023");
if ($now > $date_future) {
	header("Content-Type: application/json; charset=UTF-8");    
	http_response_code(500);
	echo json_encode(array('code'=>500, 'message'=>'The trial period has ended, please contact the developer for more info'));
	exit();
}

Function Calls

None

Variables

None

Stats

MD5 6695528b1e8e144a33f012e3b824b5a8
Eval Count 0
Decode Time 43 ms