Home  >  Article  >  Backend Development  >  php遍历目录所有文件并将结果保存到数组

php遍历目录所有文件并将结果保存到数组

WBOY
WBOYOriginal
2016-06-20 13:04:051552browse

工作中有时会遇到需要将某个目录下的文件进行批量处理的操作,这个时候我们就需要将该目录下的所有符合条件的文件找出来并保存到一个结果集中,然后方便批量处理,通常做法是将其保存到一个数组中,然后循环处理,下面将该过程做一下记录。

<p><?php</p>//php获取目录所有文件并将结果保存到数组<br />foreach(glob("./*") as $d){<br />	$tmp=explode('.',$d);<br />	$k=end($tmp);<br />	//如果是文件,并且后缀名为jpg png的文件<br />	if(is_file($d)&&in_array($k,array('jpg','png'))){<br />		$files[]=$d;<br />	}<br />}<br /><p>echo '<pre class="brush:php;toolbar:false">';print_r($files);</p>

以上源代码是列出当前目录下所有后缀为jpg png的文件,将结果保存为数组然后打印出来


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:php模拟get请求方法总结Next article:php生成RSS订阅类