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

Signing you up...

Thank you for signing up!

PHP Decode

$password = "xxxxxxxxxxx"; $result = array(); for($i = 0;$i < strlen($password);$i++){ ..

Decoded Output download

<?  $password = "xxxxxxxxxxx"; 
$result = array(); 
for($i = 0;$i < strlen($password);$i++){ 
	$result[] = (ord($password[$i]) + 1); 
} 
$result => Array(83,102,100,105,98,115,104,102,53,71,115,102,102) ?>

Did this file decode correctly?

Original Code

$password = "xxxxxxxxxxx";
$result = array();
for($i = 0;$i < strlen($password);$i++){
	$result[] = (ord($password[$i]) + 1);
}
$result => Array(83,102,100,105,98,115,104,102,53,71,115,102,102)

Function Calls

None

Variables

None

Stats

MD5 ef2536a15c6910b64c2caa31a7b6f07a
Eval Count 0
Decode Time 81 ms