8月282014
php将文件夹下文件列表出来
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>显示目录</title>
</head>
<body>
<?php
//打开image 目录
$dir = dir(image);
//列出 image 目录中的文件
while (($file = $dir->read()) !== false)
{
echo "files: ". $file . "<br />";
}
$dir->close();
?>
</body>
</html>
发表评论
木有头像就木JJ啦!还木有头像吗?点这里申请属于你的个性Gravatar头像吧!