Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php $i = 0; $j = $i; while ($i < 4) { $i = $i + 1; } echo $j; ?>..
Decoded Output download
<?php
$i = 0;
$j = $i;
while ($i < 4) {
$i = $i + 1;
}
echo $j;
?>
Did this file decode correctly?
Original Code
<?php
$i = 0;
$j = $i;
while ($i < 4) {
$i = $i + 1;
}
echo $j;
?>
Function Calls
| None |
Stats
| MD5 | d883115d4054f7ae6bef0a474490fe15 |
| Eval Count | 0 |
| Decode Time | 132 ms |