|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2000-07-21 17:55 UTC] hholzgra at cvs dot php dot net
[2000-08-01 05:37 UTC] andi@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Oct 29 18:00:01 2025 UTC |
is_dir returns dir only for "." and ".." directories in a tree, is_file returns true even for directories and filetype returns void for directories. $handle=opendir("."); while($file = readdir($handle)) { if(is_dir($file)) { echo "dir = $file"; } else { echo "file = $file"; }