Home  >  Article  >  Backend Development  >  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

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
WBOYOriginal
2016-07-29 08:39:021615browse

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.

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