比如 temlate目录下有很多文件哈
有a.html b.html list_111.html list.html list222.html
我想读取出
以list开头的文件
结果有 list_111.html list.html list222.html
你可以考虑先使用opendir()打开文件夹,再使用readdir()函数遍历文件夹, readdir()函数可以返回目录下的文件名。接着用substr()函数,应该可以完成你要的功能。
$files = glob('temlate/list*');
<?php$path = dirname(__FILE__); // 这里填写要搜寻的目录$result = array();if($handle = opendir($path)){ while(($file=readdir($handle))!==false){ if($file!='.' && $file!='..'){ if(strtolower(substr($file,0,4))=='list'){ array_push($result, $file); } } } closedir($handle); } print_r($result);?>