diff options
Diffstat (limited to 'ext/spl/tests/bug42364.phpt')
| -rw-r--r-- | ext/spl/tests/bug42364.phpt | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/ext/spl/tests/bug42364.phpt b/ext/spl/tests/bug42364.phpt new file mode 100644 index 0000000..971fcc5 --- /dev/null +++ b/ext/spl/tests/bug42364.phpt @@ -0,0 +1,24 @@ +--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"; +} +?> +===DONE=== +--EXPECTF-- +Found %i entries! +===DONE=== |
