Home > php教程 > php手册 > PHP traverses the files in the folder and obtains the value of inputname

PHP traverses the files in the folder and obtains the value of inputname

WBOY
Release: 2016-07-06 13:30:38
Original
1497 people have browsed it

?php $dir = dirname(__FILE__); //The name of the directory to be traversed - the folder where the current file is located //$dir='D:PHPwampwwwadminhostsadmin'; //PHP traverses all files in the folder $handle= opendir($dir."."); $arr = array(); while($file=readdir($handle)){ if(is_file($file)){ if (

$dir = dirname(__FILE__); //The name of the directory to be traversed ->The folder where the current file is located
//$dir='D:PHPwampwwwadminhostsadmin';
//PHP traverses all files in the folder
$handle=opendir($dir.".");
$arr = array();
while($file=readdir($handle)) {
if(is_file($file)){
if ($file != "."&& $file != "..") {
$file = mb_substr($file,0,strripos ($file,'.'));
  $files = explode(' ',$file); //Convert $file into an array
  $arr[]=$files['0'];/ /Convert to one-dimensional array
 }
 }
}
//PRint_r($arr);
closedir($handle);
//PHP gets input->name value
foreach ($_POST AS $key=>$value){
 if(!in_array($key,$arr)){ //Judge whether the name value is in $arr
 echo "$ key: does not exist";
}

}
?>


< head>

test


 


 
 < br />

 


 


 


  


  < br />

 


 





Related labels:
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 Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template