Skip to content

Instantly share code, notes, and snippets.

@lionhylra
Created September 24, 2013 10:06
Show Gist options
  • Save lionhylra/6682748 to your computer and use it in GitHub Desktop.
Save lionhylra/6682748 to your computer and use it in GitHub Desktop.
遍历目录文件
<?php
if($handle = opendir('C:\\Inetpub\\wwwroot\\test\\')){
echo "Files:\n";
while (false !== ($file = readdir($handle))){
echo "$file\n";
}
closedir($handle);
}
?>
<?php
foreach(glob('*.*') as $filename){
echo 'Filename:'.$filename;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment