php-src/ext/spl/tests/dit_001.phpt

16 lines
240 B
Plaintext
Raw Normal View History

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