本文介绍了[JS]获取Apache目录列表的文件名的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试获取 Apache2 Direotry 列表的所有文件以创建 AJAX 请求 tp 中的每一个.但我找不到匹配的正则表达式.
I am trying to get all the files of an Apache2 Direotry Listing to create AJAX-Requests tp each of them. But I can't find a RegExp to match in .
推荐答案
$dir = 'http://www.example.com/directory';
$data = new DOMDocument();
@$data->loadHTMLFile($dir);
$links = array();
foreach($data->getElementsByTagName('a') as $link)
{
$url = $link->getAttribute('href');
if ($url[0] !== '?') // skip column links
{
$links[] = $url;
}
}
print_r($links);
这篇关于[JS]获取Apache目录列表的文件名的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!