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: FilesystemIterator and foreach --FILE-- <?php $count = 0; foreach(new Filesy..
Decoded Output download
--TEST--
SPL: FilesystemIterator and foreach
--FILE--
<?php
$count = 0;
foreach(new FilesystemIterator(__DIR__) as $ent)
{
++$count;
}
var_dump($count > 0);
?>
--EXPECT--
bool(true)
Did this file decode correctly?
Original Code
--TEST--
SPL: FilesystemIterator and foreach
--FILE--
<?php
$count = 0;
foreach(new FilesystemIterator(__DIR__) as $ent)
{
++$count;
}
var_dump($count > 0);
?>
--EXPECT--
bool(true)
Function Calls
None |
Stats
MD5 | a506822ab77413e202a0d57657791d19 |
Eval Count | 0 |
Decode Time | 90 ms |