摘要: 1 //php递归查找该目录下及子文件名称是否包含中文空格括号 2 function searchDir($path,&$data){ 3 if(is_dir($path)){ 4 $dp=dir($path); 5 while($file=$dp->read()){ 6 if($file!='.'&& $file!='... 阅读全文
posted @ 2017-08-23 18:42 YouWong 阅读(252) 评论(0) 推荐(0) 编辑