清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>
<?php
$dir = "PUT_PATH_TO_DIR_HERE";
// Open a known directory, and proceed to read its contents
if (is_dir($dir)) {
if ($dh = opendir($dir)) {
while (($file = readdir($dh)) !== false) {
echo "filename: $file : filetype: " . filetype($dir . $file) . "\n";
}
closedir($dh);
}
}
?>