PHP 快速生成目录树
function mkdirs($path , $mode = 0755 ){ if(!is_dir($path)){ mkdirs(dirname($path),$mode); mkdir($path,$mode); } return true; }