我有一个任务获取与某些前缀匹配的文件列表。现在我这样做了:
$cache = get_dir_file_info($dir_path);
$prefix = 'some_prefix';
foreach($cache as $info) {
if(strpos($info['name'], $prefix) === 0) {
...do some things...
}
}
我使用Codeigniter 2。
我知道有php
函数array glob(string $pattern [, int $flags = 0])
但我想用更多“codeigniter方式”来做这件事。
所以我的问题是:我可以通过使用codeigniter的掩码获取文件夹列表吗?
问候。