php-src/ext/spl/tests/dit_001.phpt
Marcus Boerger 2f40d61bed - Fix test
2004-09-29 09:43:33 +00:00

16 lines
240 B
PHP
Executable File

--TEST--
SPL: Problem with casting to string
--FILE--
<?php
$d = new DirectoryIterator('.');
var_dump($d);
preg_match('/x/', $d);
var_dump(is_string($d));
?>
===DONE===
--EXPECTF--
object(DirectoryIterator)#%d (0) {
}
bool(true)
===DONE===