mirror of
https://github.com/php/php-src.git
synced 2025-01-10 21:14:37 +08:00
20 lines
342 B
PHP
Executable File
20 lines
342 B
PHP
Executable File
--TEST--
|
|
SPL: Problem with casting to string
|
|
--SKIPIF--
|
|
<?php if (!extension_loaded("spl")) print "skip"; ?>
|
|
--FILE--
|
|
<?php
|
|
$d = new DirectoryIterator('.');
|
|
var_dump($d);
|
|
var_dump(is_string($d));
|
|
preg_match('/x/', $d);
|
|
var_dump(is_string($d));
|
|
?>
|
|
===DONE===
|
|
--EXPECTF--
|
|
object(DirectoryIterator)#%d (0) {
|
|
}
|
|
bool(false)
|
|
bool(false)
|
|
===DONE===
|