Heim >Backend-Entwicklung >PHP-Tutorial >求段php代码 如何读取出 指定目录下 的文件

求段php代码 如何读取出 指定目录下 的文件

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-06-23 13:28:33859Durchsuche

比如 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);?>

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn