mirror of
https://github.com/php/php-src.git
synced 2025-01-10 21:14:37 +08:00
1223c085b0
[DOC] Added RecursiveTreeIterator Documentation in ext/spl/internal/recursivetreeiterator.inc
17 lines
287 B
PHP
Executable File
17 lines
287 B
PHP
Executable File
--TEST--
|
|
SPL: RecursiveTreeIterator(void)
|
|
--INI--
|
|
error_reporting=E_ALL&~E_NOTICE
|
|
--FILE--
|
|
<?php
|
|
try {
|
|
new RecursiveTreeIterator();
|
|
} catch (InvalidArgumentException $e) {
|
|
echo "InvalidArgumentException thrown\n";
|
|
}
|
|
?>
|
|
===DONE===
|
|
--EXPECTF--
|
|
InvalidArgumentException thrown
|
|
===DONE===
|