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

12 lines
182 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('.');
preg_match('/x/', $d);
var_dump($d);
?>
--EXPECTF--
object(DirectoryIterator)#%d (0) {
}