摘要:
<?php$dir = "testFile";//假设当前页面同目录下有testFile文件夹//方式1$dirSource = opendir($dir);while ($childFileName = readdir($dirSource)) { if (!strcmp($childFileName, ".") || !strcmp($childFileName, "..")) {//排除testFile文件夹下最开始的 "."和".."两个文件名 continue; } echo $ 阅读全文