php模拟服务器实现autoindex效果的方法,phpautoindex_PHP教程
程序员文章站
2022-06-13 16:50:53
...
php模拟服务器实现autoindex效果的方法,phpautoindex
本文实例讲述了php模拟服务器实现autoindex效果的方法。分享给大家供大家参考。具体实现方法如下:
1.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);
?>
pwd of
../
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());
?>
2. 运行效果如下图所示:
希望本文所述对大家的php程序设计有所帮助。
上一篇: destoon实现不同会员组公司名称显示不同的颜色的方法_PHP
下一篇: OCM实验目录
推荐阅读
-
php模拟服务器实现autoindex效果的方法
-
PHP接口多继承和tarits实现多继承效果的方法教程详情
-
php模拟服务器实现autoindex效果的方法_PHP
-
php模拟服务器实现autoindex效果的方法,phpautoindex_PHP教程
-
php模拟服务器实现autoindex效果的方法_PHP
-
Zend Framework实现多服务器共享SESSION数据的方法,zendsession_PHP教程
-
php模拟登陆的实现方法分析_PHP教程
-
PHP模拟asp.net的StringBuilder类实现方法,_PHP教程
-
php模拟服务器实现autoindex效果的方法_PHP教程
-
php实现在服务器端调整图片大小的方法,_PHP教程