PHP program to get all files in a directory and save the results to an array_PHP tutorial

WBOY
Release: 2016-07-13 10:27:52
Original
1117 people have browsed it

Sometimes at work, we need to batch process files in a certain directory. At this time, we need to find all the files that meet the conditions in the directory and save them into a result set. Then it is convenient for batch processing. The usual method is to save it into an array and then process it in a loop. The process will be recorded below.

//php gets all the files in the directory and saves the results to an array

foreach(glob("./*") as $d){

 $tmp=explode(".",$d);

 $k=end($tmp);

//If it is a file, and the file extension is jpg png

 if(is_file($d)&&in_array($k,array("jpg","png"))){

$files[]=$d;

 }

 }

echo "

 ";print_r($files);

The above source code is to list all files with the suffix jpg png in the current directory, save the results as an array and then print them out. The results of this test are printed as follows:

php获取目录所有文件并将结果保存到数组的程序  帮客之家

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/814677.htmlTechArticleAt work, sometimes we need to batch process files in a certain directory. At this time, we will You need to find all the files that meet the conditions in this directory and save them to a...
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!