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
//打开目录
$dir = dir("../www");
//列出 目录中的文件
while (($file = $dir->read()) !== false){
echo "files: ". $file . "<br />";
}
$dir->close();
?>
<p> </p>
<form id="form1" name="form1" method="post" action="test2.php">
<label>输入查看文件目录名:
<input type="text" name="mulu" />
</label>
<label><br />
<br />
输入查看文件名:
<input type="text" name="textfield" />
</label>
<p>
<label></label>
<input type="submit" name="Submit" value="提交" />
</p>
</form>
<p> </p>
<?php
//打开image 目录
if($_POST[mulu]){
$muluming = $_POST[mulu];
echo "<h1>以下是".$muluming."目录下的文件:</h1><BR>";
$dir = dir("$muluming");
//列出 image 目录中的文件
while (($file = $dir->read()) !== false){
echo "files: ". $file . "<br />";
}
$dir->close();
}
else{
echo "请输入目录名<br>";
}
?>
<?php
if($_POST[textfield]){
$file_name = $_POST[textfield];
echo "<h1>以下是".$file_name."文件的内容:</h1><BR>";
highlight_file("$file_name");
}
else{
echo "请输入文件路径";
}
?>
</body>
</html>