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

Signing you up...

Thank you for signing up!

PHP Decode

<? if (isset($_POST['tag']) && $_POST['tag'] != '') { $tag = $_POST['tag']; $respon..

Decoded Output download

<? 
if (isset($_POST['tag']) && $_POST['tag'] != '') { 
 
	$tag = $_POST['tag']; 
	$response = array("tag" => $tag, "success" => 0, "error" => 0); 
	 
		  	$response["success"] = 1; 
            $response["phone"] = '1234567890';	 
			 echo json_encode($response); 
	} 
	 
?> 

Did this file decode correctly?

Original Code

<?
if (isset($_POST['tag']) && $_POST['tag'] != '') {

	$tag = $_POST['tag'];
	$response = array("tag" => $tag, "success" => 0, "error" => 0);
	
		  	$response["success"] = 1;
            $response["phone"] = '1234567890';	
			 echo json_encode($response);
	}
	
?>

Function Calls

json_encode 1

Variables

$tag None
$response [{'key': 'tag', 'value': None}, {'key': 'success', 'value': 1}, {'key': 'error', 'value': 0}, {'key': 'phone', 'value': '1234567890'}]

Stats

MD5 651914f062ad4c1e301eaea39a3b2f73
Eval Count 0
Decode Time 89 ms