Heim >Backend-Entwicklung >PHP-Tutorial > php稽查并创建多级目录

php稽查并创建多级目录

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-06-13 12:32:29729Durchsuche

php检查并创建多级目录

//检查并创建多级目录
?? ?function checkDir($path){
?? ??? ?$pathArray = explode('/',$path);
?? ??? ?$nowPath = '';
?? ??? ?array_pop($pathArray);
?? ??? ?foreach ($pathArray as $key=>$value){
?? ??? ??? ?if ( ''==$value ){
?? ??? ??? ??? ?unset($pathArray[$key]);
?? ??? ??? ?}else{
?? ??? ??? ??? ?if ( $key == 0 )
?? ??? ??? ??? ??? ?$nowPath .= $value;
?? ??? ??? ??? ?else
?? ??? ??? ??? ??? ?$nowPath .= '/'.$value;
?? ??? ??? ??? ?if ( !is_dir($nowPath) ){
?? ??? ??? ??? ??? ?if ( !mkdir($nowPath, 0777) ) return false;
?? ??? ??? ??? ?}
?? ??? ??? ?}
?? ??? ?}
?? ??? ?return true;
?? ?}

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn