dousi1097 2011-09-15 21:10
浏览 179
已采纳

如何使用PHP读取远程服务器上的目录内容?

I have a url, http://www.mysite.com/images and the images directory allows Directory Listings. How can I get the files in that directory with PHP?

  • 写回答

5条回答 默认 最新

  • dthdlv9777 2011-09-15 21:16
    关注

    Here is an example if you need to read the images over HTTP and the server is Apache:

    <?php
    $url = 'http://www.mysite.com/images';
    
    $html = file_get_contents($url);
    
    $count = preg_match_all('/<td><a href="([^"]+)">[^<]*<\/a><\/td>/i', $html, $files);
    
    for ($i = 0; $i < $count; ++$i) {
        echo "File: " . $files[1][$i] . "<br />
    ";
    }
    
    ?>
    

    If it is the same server you are running your PHP on, you can use opendir() and readdir().

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(4条)

报告相同问题?

悬赏问题

  • ¥15 matlab有关常微分方程的问题求解决
  • ¥15 perl MISA分析p3_in脚本出错
  • ¥15 k8s部署jupyterlab,jupyterlab保存不了文件
  • ¥15 ubuntu虚拟机打包apk错误
  • ¥199 rust编程架构设计的方案 有偿
  • ¥15 回答4f系统的像差计算
  • ¥15 java如何提取出pdf里的文字?
  • ¥100 求三轴之间相互配合画圆以及直线的算法
  • ¥100 c语言,请帮蒟蒻写一个题的范例作参考
  • ¥15 名为“Product”的列已属于此 DataTable