程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php模擬服務器實現autoindex效果的方法

php模擬服務器實現autoindex效果的方法

編輯:關於PHP編程

     這篇文章主要介紹了php模擬服務器實現autoindex效果的方法,實例分析了php操作URL及傳遞參數的技巧,具有一定參考借鑒價值,需要的朋友可以參考下

       

    本文實例講述了php模擬服務器實現autoindex效果的方法。分享給大家供大家參考。具體實現方法如下:

    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程序設計有所幫助。

    1. 上一頁:
    2. 下一頁:
    Copyright © 程式師世界 All Rights Reserved