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

Signing you up...

Thank you for signing up!

PHP Decode

<html> <body> <?php function my(){ $x = 0; echo $x; $x++; } my() echo "<br>"; my..

Decoded Output download

<html> 
<body> 
<?php  
function my(){ 
$x = 0; 
echo $x; 
$x++; 
} 
my() 
echo "<br>"; my(); 
echo "<br>"; my(); 
?> 
</body> 
</html>

Did this file decode correctly?

Original Code

<html>
<body>
<?php 
function my(){
$x = 0;
echo $x;
$x++;
}
my()
echo "<br>"; my();
echo "<br>"; my();
?>
</body>
</html>

Function Calls

None

Variables

None

Stats

MD5 ea3fe8c4c929df42769230b145224b7d
Eval Count 0
Decode Time 85 ms