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-- Calling closedir() without argument and without opening a directory beforehand --..
Decoded Output download
--TEST--
Calling closedir() without argument and without opening a directory beforehand
--FILE--
<?php
try {
closedir();
} catch (TypeError $e) {
echo $e->getMessage(), "
";
}
?>
--EXPECT--
No resource supplied
Did this file decode correctly?
Original Code
--TEST--
Calling closedir() without argument and without opening a directory beforehand
--FILE--
<?php
try {
closedir();
} catch (TypeError $e) {
echo $e->getMessage(), "\n";
}
?>
--EXPECT--
No resource supplied
Function Calls
None |
Stats
MD5 | 19bd14470258eee2f09f44336c3850e4 |
Eval Count | 0 |
Decode Time | 99 ms |