我想要用php實現一個網頁獲取一個文件夾 E:\avi裡所有後綴是avi和pdf文件的路徑,然後把超鏈接放到網頁。
文件夾avi可能是在二級或更高的路徑,就是可能E:\avi\1.avi E:\1\x\1.avi 我需要
名字.avi路徑用相對路徑
<?php
$path = ".";
$ext = ".css";
function get_filetree($path, $ext)
{
$tree = array();
$temp = glob($path . "/*" . $ext);
if($temp) $tree = array_merge($tree, $temp);
foreach (glob($path . "/*", GLOB_ONLYDIR) as $dir) {
$temp = get_filetree($dir, $ext);
if($temp) $tree = array_merge($tree, $temp);
}
return $tree;
}
//print_r(get_filetree($path, $ext));
$list = get_filetree($path, $ext);
foreach($list as $item) {
echo "".$file = basename($item)."
";
}