加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 站长学院 > PHP教程 > 正文

php模拟服务器实现autoindex效果的方法

发布时间:2020-12-13 02:27:39 所属栏目:PHP教程 来源:网络整理
导读:《:php模拟服务器实现autoindex效果的方法》要点: 本文介绍了:php模拟服务器实现autoindex效果的方法,希望对您有用。如果有疑问,可以联系我们。 本篇章节讲解php模拟服务器实现autoindex效果的办法.供大家参考研究.具体实现办法如下: PHP学习

《:php模拟服务器实现autoindex效果的方法》要点:
本文介绍了:php模拟服务器实现autoindex效果的方法,希望对您有用。如果有疑问,可以联系我们。

本篇章节讲解php模拟服务器实现autoindex效果的办法.分享给大家供大家参考.具体实现办法如下:PHP学习

1.PHP代码如下:

代码如下:
<?php
//文件浏览程序
error_reporting(0);
$pwd = empty($_GET['dir']) ? './' : $_GET['dir'];
$pwd = realpath($pwd);
if(is_file($pwd)) {
??? highlight_file ($pwd);
??? exit;
}else
??? $it = new FilesystemIterator($pwd);
?>
<html>
<head>
??? <title>pwd of <?php echo $pwd ?></title>
</head>
<body bgcolor="white">
??? <h1>pwd of <?php echo $pwd ?></h1><hr>
??? <pre><a href="?dir=<?php echo dirname($pwd)?>">../</a>
<?php
foreach ($it as $file){
??? if($file->isDir()) {
??????? $fileSize = '_';
??????? $fileName = $file->getFilename() . '/';
??? } elseif($file->isFile()) {
??????? $fileSize =? $file->getSize();
??????? $fileName = $file->getFilename();
??? }
??? $date = date('Y-m-d H:i',$file->getCTime());
?><a href="?dir=<?php echo $file->getRealPath()?>"><?php echo $fileName ?></a><?php echo str_pad($date,60-strlen($fileName),' ',STR_PAD_LEFT)?><?php echo str_pad($fileSize,30,STR_PAD_LEFT)?>
<?php }?></pre><hr>
</body>
</html>

2. 运行效果如下图所示:

:php模拟服务器实现autoindex效果的方法

:php模拟服务器实现autoindex效果的方法

希望本文所述对大家的php程序设计有所赞助.

欢迎参与《:php模拟服务器实现autoindex效果的方法》讨论,分享您的想法,编程之家 52php.cn为您提供专业教程。

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读