mirror of
https://github.com/php/php-src.git
synced 2024-11-26 03:16:33 +08:00
25 lines
481 B
PHP
25 lines
481 B
PHP
--TEST--
|
|
Bug #42364 (Crash when using getRealPath with DirectoryIterator)
|
|
--FILE--
|
|
<?php
|
|
$it = new DirectoryIterator(dirname(__FILE__));
|
|
|
|
$count = 0;
|
|
|
|
foreach ($it as $e) {
|
|
$count++;
|
|
$type = gettype($e->getRealPath());
|
|
if ($type != "string" && $type != "unicode") {
|
|
echo $e->getFilename(), " is a ", gettype($e->getRealPath()), "\n";
|
|
}
|
|
}
|
|
|
|
if ($count > 0) {
|
|
echo "Found $count entries!\n";
|
|
}
|
|
echo "===DONE==="
|
|
?>
|
|
--EXPECTF--
|
|
Found %i entries!
|
|
===DONE===
|