|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2010-10-01 22:11 UTC] cataphract@php.net
[2010-10-01 22:11 UTC] cataphract@php.net
-Status: Open
+Status: Bogus
[2010-10-01 22:11 UTC] cataphract@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 02 21:00:02 2025 UTC |
Description: ------------ Hi! I writted buggy code and php engine crashed. Test script: --------------- function list_dir($dir) { $d = dir($dir); while (false !== ($entry = $d->read())) { if(is_dir($entry)) { if($entry != "." && $entry != "..") { continue; } list_dir("$dir/$entry"); } else { echo "$dir/$entry\n"; } } } list_dir("/"); Expected result: ---------------- Hmm ... I want some error or warning. Actual result: -------------- PHP Warning: dir(/var/www/priv/./././././././././././././././././././././././././././././././ ././././././././././././././././././././././././././././././././././././././././ ././././././././././././././././././././././././././././././././././././././././ ././././././././././././././././././././././././././././././././././././././././ ././././././././././././././././././././././././././././././././././././././././ ././././././././././././././././././././././././././././././././././././././././ ././././././././././././././././././././././././././././././././././././././././ ././././././././././././././././././././././././././././././././././././././././ ././././././././././././././././././././././././././././././././././././././././ ././././././././././././././././././././././././././././././././././././././././ ././././././././././././././././././././././././././././././././././././././././ ././././././././././././././././././././././././././././././././././././././././ ././././././././././././././././././././././././././././././././ in /var/www/priv/dir_tree.php on line 3 Warning: dir(/var/www/priv/./././././././././././././././././././././././././././././././ ././././././././././././././././././././././././././././././././././././././././ ././././././././././././././././././././././././././././././././././././././././ ././././././././././././././././././././././././././././././././././././././././ ././././././././././././././././././././././././././././././././././././././././ ././././././././././././././././././././././././././././././././././././././././ ././././././././././././././././././././././././././././././././././././././././ ././././././././././././././././././././././././././././././././././././././././ ././././././././././././././././././././././././././././././././././././././././ ././././././././././././././././././././././././././././././././././././././././ ././././././././././././././././././././././././././././././././././././././././ ././././././././././././././././././././././././././././././././././././././././ ././././././././././././././././././././././././././././././././ in /var/www/priv/dir_tree.php on line 3 PHP Fatal error: Call to a member function read() on a non-object in /var/www/priv/dir_tree.php on line 4 Fatal error: Call to a member function read() on a non-object in /var/www/priv/dir_tree.php on line 4