Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
--TEST-- SPL: EmptyIterator --FILE-- <?php echo "===EmptyIterator===\n"; foreach(new Lim..
Decoded Output download
--TEST--
SPL: EmptyIterator
--FILE--
<?php
echo "===EmptyIterator===
";
foreach(new LimitIterator(new EmptyIterator(), 0, 3) as $key => $val)
{
echo "$key=>$val
";
}
?>
--EXPECT--
===EmptyIterator===
Did this file decode correctly?
Original Code
--TEST--
SPL: EmptyIterator
--FILE--
<?php
echo "===EmptyIterator===\n";
foreach(new LimitIterator(new EmptyIterator(), 0, 3) as $key => $val)
{
echo "$key=>$val\n";
}
?>
--EXPECT--
===EmptyIterator===
Function Calls
None |
Stats
MD5 | 51e01dfcf9c9f9c6d8738a059c5c9d76 |
Eval Count | 0 |
Decode Time | 100 ms |