1
0
mirror of https://github.com/php/php-src.git synced 2026-04-22 23:48:14 +02:00
Files
archived-php-src/ext/spl/tests/dit_001.phpt
T
Fabien Villepinte a555cc0b3d Clean DONE tags from tests
Remove most of the `===DONE===` tags and its variations.
Keep `===DONE===` if the test output otherwise becomes empty.

Closes GH-4872.
2019-11-07 21:31:47 +01:00

27 lines
553 B
PHP

--TEST--
SPL: Problem with casting to string
--SKIPIF--
<?php
if (!defined('GLOB_ERR')) print "skip";
--FILE--
<?php
$d = new DirectoryIterator('.');
var_dump($d);
var_dump(is_string($d));
preg_match('/x/', $d);
var_dump(is_string($d));
?>
--EXPECTF--
object(DirectoryIterator)#%d (4) {
%s"pathName"%s"SplFileInfo":private]=>
%s(%d) ".%c%s"
%s"fileName"%s"SplFileInfo":private]=>
%s(%d) "%s"
%s"glob"%s"DirectoryIterator":private]=>
bool(false)
%s"subPathName"%s"RecursiveDirectoryIterator":private]=>
%s(0) ""
}
bool(false)
bool(false)