Heim > Artikel > Backend-Entwicklung > PHP prüft und erstellt mehrstufige Verzeichnisse
($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;
}