php读取文件目录

<?php
function readDirctory($path)
{
    if (!is_dir($path)) {
        return false;
    }
    $handle = opendir($path);

    $arr = [];
    while ( ($file = readdir($handle)) !== false ) {

        if ($file != . && $file != ..) {
            if (is_file($path . / . $file)) {
                $arr[file][] = $file;
            }
            if (is_dir($path . / . $file)) {
                $arr[dir][] = $file;
            }

        }

    }
    closedir($handle);
    return $arr;

}

$path = "abc";
$res = readDirctory($path);
print_r($res);

 

php读取文件目录

上一篇:设计模式(C++版)之(prototype) 原型模式


下一篇:C++初学(一)