Ministry of Human Resources and Social Security Document No. 10774 implements a function to search for files of a specified type in a specified directory under PHP

WBOY
Release: 2016-07-29 08:39:02
Original
1680 people have browsed it

Copy the code The code is as follows:


function bdir($dir,$typearr){
$ndir = scandir($dir);
foreach ($ndir as $k => $v){
if ($v == '.' || $v == '..'){
continue;
}
if (filetype($dir.$v) == 'file'){
$arr = explode(' .',$v);
$type = end($arr);
if (in_array($type,$typearr)){
echo $dir.$v."
";
}
}elseif (filetype($dir.$v) == 'dir'){
//echo $dir.$v."
";
bdir($dir.$v.'/', $typearr);
}
}
}
$dir ='e:/ddcms/';
$typearr = array('htm','html','php');
bdir($dir,$typearr) ;

The above introduces the function of searching for specified types of files in the specified directory under the Ministry of Human Resources and Social Security Document No. 10774 in PHP, including the content of the Ministry of Human Resources and Social Security Document No. 10774. I hope that friends who are interested in PHP tutorials can helped.

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!