简单的PHP列目录脚本

<?php

$dir = './';
$okfiletypes = array('php','html');

$files = array();
if (is_dir($dir)) {
	if ($dh = opendir($dir)) {
		while (($file = readdir($dh)) !== false) {
			if (($file != '.') && ($file != '..')) {
				//if (in_array(strtolower(substr($file,(strrpos($file,'.')+1))),$okfiletypes)) {
					$files[] = $file;
				//}
			}
		}
		closedir($dh);
	}
}
sort($files);

foreach ($files as $file) {
	echo '<div><a href="'.$file.'">'.$file.'</a></div>';
}

?>

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注

Back to Top