php-8.0.30-src/ext/standard/tests/dir/closedir_without_arg.phpt

13 lines
220 B
PHP

--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