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-- Test closedir() function : basic functionality --FILE-- <?php /* * Test basic fu..
Decoded Output download
*** Testing closedir() : basic functionality ***
Did this file decode correctly?
Original Code
--TEST--
Test closedir() function : basic functionality
--FILE--
<?php
/*
* Test basic functionality of closedir()
*/
echo "*** Testing closedir() : basic functionality ***\n";
$base_dir = __DIR__;
$dir_path = $base_dir . '/closedir_basic';
mkdir($dir_path);
echo "\n-- Call closedir() with no arguments: --\n";
$dh1 = opendir($dir_path);
var_dump(closedir());
echo "-- Check Directory Handle: --\n";
var_dump($dh1);
echo "\n-- Call closedir() with \$dir_handle argument supplied: --\n";
$dh2 = opendir($dir_path);
if ((int)$dh1 === (int)$dh2) {
echo "\nNo new resource created\n";
}
var_dump(closedir($dh2));
echo "-- Check Directory Handle: --\n";
var_dump($dh2);
?>
--CLEAN--
<?php
$base_dir = __DIR__;
$dir_path = $base_dir . '/closedir_basic';
rmdir($dir_path);
?>
--EXPECTF--
*** Testing closedir() : basic functionality ***
-- Call closedir() with no arguments: --
NULL
-- Check Directory Handle: --
resource(%d) of type (Unknown)
-- Call closedir() with $dir_handle argument supplied: --
NULL
-- Check Directory Handle: --
resource(%d) of type (Unknown)
Function Calls
None |
Stats
MD5 | 26935f9e4ccd4849ebf6c517342587e5 |
Eval Count | 0 |
Decode Time | 79 ms |