14 lines
350 B
PHP
14 lines
350 B
PHP
--TEST--
|
|
Calling closedir() without argument and without opening a directory beforehand
|
|
--FILE--
|
|
<?php
|
|
try {
|
|
closedir();
|
|
} catch (TypeError $e) {
|
|
echo $e->getMessage(), "\n";
|
|
}
|
|
?>
|
|
--EXPECTF--
|
|
Deprecated: closedir(): Passing null is deprecated, instead the last opened directory stream should be provided in %s on line %d
|
|
No resource supplied
|