如何使用PHP获取网站目录下的文件列表

时间:2014-06-23 13:53:45

标签: php

我有多个网站,但我在每个网站都在寻找一个XML文件,我尝试过使用这个

<?php
function getLinks($link)
{
    /*** return array ***/
    $ret = array();

    /*** a new dom object ***/
    $dom = new domDocument;

    /*** get the HTML (suppress errors) ***/
    @$dom->loadHTML(file_get_contents($link));

    /*** remove silly white space ***/
    $dom->preserveWhiteSpace = false;

    /*** get the links from the HTML ***/
    $links = $dom->getElementsByTagName('a');

    /*** loop over the links ***/
    foreach ($links as $tag)
    {
        $ret[$tag->getAttribute('href')] = $tag->childNodes->item(0)->nodeValue;
    }

    return $ret;
} ?>

但它只列出链接,但我需要列出目录及其中的页面

0 个答案:

没有答案