PHP头条
热点:

PHPSPL标准库的用法(遍历目录,查找固定条件的文件)-PHP源码


php代码

getInnerIterator();
        if ($item->isFile() && 
                in_array(pathinfo($item->getFilename(), PATHINFO_EXTENSION), $this->ext)) {
            return TRUE;
        }
    }
}

// 实例化
foreach (new RecursiveFileFilterIterator('D:/history') as $item) {
    echo $item . PHP_EOL;
}

www.phpzy.comtrue/php/35857.htmlTechArticlePHPSPL标准库的用法(遍历目录,查找固定条件的文件)-PHP源码 php代码 getInnerIterator(); if ($item->isFile() in_array(pathinfo($item->getFilename(), PATHINFO_EXTENSION), $this->ext)) { return TRUE; } }}// 实例化foreach...

相关文章

PHP之友评论

今天推荐