标签:目录

php

php读取目录列表

pren 发布于 2021-10-15

/** * 读取目录列表 * 不包括 . .. 文件 三部分 * * @param string $path 路径 * @return array 数组格式的返回结果 */ function readDirList($path) { if (is_dir($path)) { $h...

阅读(471)评论(0)赞 (0)