How to show all files in a document?

$dirname=”E:/zhanzhongjie/chengbiao-com/chengbiao-com”;
$dir_handle=opendir($dirname);
while($file=readdir($dir_handle))

{
echo $file.”
“;
}

closedir($dir_handle)

Posted in Php Functions, Php Study.

Leave a Reply

You must be logged in to post a comment.