php问题~~
<html><head><title>我的文件查看器</title></head><body>&l...
<html> <head> <title> 我的文件查看器</title> </head> <body> <a href="./file_viewer1.php">返回文件管理器</a><br><br> <? $currentdir=$_GET[currentdir]; $filename=$_GET[filename]; $type=$_GET[type]; if(strtoupper($type)==".PHP") { readfile($currentdir."\\".$filename); } else { $fp=fopen($currentdir."\\". $filename,"r"); while($line=fgets($fp)) { $line=htmlentities($line,ENT_COMPAT,"GB2312"); echo $line; } fclose($fp); } ?> </body></html>这个程序执行完后总是要显示以下3个warming:Warning: fopen(\) [function.fopen]: failed to open stream: No such file or directory in D:\Program Files\IDM Computer Solutions\AppServ\www\show_file.php on line 17Warning: fgets(): supplied argument is not a valid stream resource in D:\Program Files\IDM Computer Solutions\AppServ\www\show_file.php on line 18Warning: fclose(): supplied argument is not a valid stream resource in D:\Program Files\IDM Computer Solutions\AppServ\www\show_file.php on line 23 以下这个是file_viewer1.php<html> <head> <title>我的文件管理器</title> </head> <body> <center><h3>我的文件管理器</h3></center> <table border=1 width=100%> <tr align=center bgcolor=yellow> <th>文件名</th> <th>大小</th> <th>创建时间</th> <th>最后修改时间</th> </tr> <? if(!isset($_GET[currentdir])||empty($_GET[currentdir])) $dir=getcwd(); else $dir=$_GET[currentdir]; chdir($dir); echo "当前目录:".getcwd()."<br>"; $dh=opendir($dir); while($item=readdir($dh)) { echo "<tr><td>"; if(is_dir($item)) { if($item==".") { $currentdir=getcwd(); echo "<a href=$php_self?currentdir=$currentdir>.</a>"; } else if($item=="..") { $currentdir=getcwd()."\\.."; echo "<a href=$php_self?currentdir=$currentdir>..</a>"; } else { $currentdir=getcwd()."\\$item"; echo "<a href=$php_self?currentdir=$currentdir>$item</a>"; } } else { $extname=substr($item,strrpos($item,".")); if(strtoupper($extname)==".PHP"||strtoupper($extname)==".TXT") { $currentdir=getcwd(); echo "<a href=./show_file2.php?currentdir=$currentdir&filename=$item&type=$type>$item</a>"; } else { echo "$item"; } } if(is_dir($item)) $file_size="目录"; else $file_size=round(filesize($item)/1024)."k"; echo "<td>$file_size</td>"; $create_date=date("y-m-d h:i:sA",filectime($item)); echo "<td>$create_date</td>"; $update_date=date("y-m-d h:i:sA",filemtime($item)); echo "<td>$update_date</td>"; } closedir($dh); ?> </table></body></html>请各位高手帮帮忙~~~
展开
4个回答
展开全部
没有排版的代码,大家都不愿意看的~
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你那什么乱七八糟的东西啊! 谁会花半天时间去看你的代码? 你要问什么问题? 或哪一段代码有问题? 直接提出来就好了!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
太乱了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
额,what is it、
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询