<?php
function open_dir($path)
{
if (!is_dir($path) || empty($path)) die("该" . $path . "不是目录");
$path = $path . '/';
$fileList = [];
$dirFile = scandir($path);
if (!empty($dirFile) && is_array($dirFile)) {
foreach ($dirFile as $file) {
if ($file != '.' && $file != '..') {
$fullPath = $path . $file;
if (is_dir($fullPath)) {
// 子文件夹,进行递归
$fileList[$file] = open_dir($fullPath);
} else {
//根目录下的文件
$fileList[] = $file;
}
}
}
}
return $fileList;
}
$list = open_dir("/www/wwwroot/8688web.com/one");
// echo '<pre>';
// print_r($list);
// echo '</pre>';
?>
版权属于:
小破孩
作品采用:
《
署名-非商业性使用-相同方式共享 4.0 国际 (CC BY-NC-SA 4.0)
》许可协议授权
评论 (0)