https://static.iklfy.com/attach/2012/06/18/1289019857_52938042.jpg

决择-


眼前的生活,工作,感情,似乎都是一团糟;
一点头绪都没有;生日又要到了;又长了一岁;
可心情却是一年不如一年;
都说烟能去愁,点燃了一支,烟灰烟灭;
却带不走一丝忧伤________
https://static.iklfy.com/static/images/index/4.jpg

php建立多级目录(多层目录)

//php建立多级目录(多层)I
mkpath('hml/a/b/c/d/e');
function mkpath($mkpath,$mode=0777){
$path_arr=explode('/',$mkpath);
foreach ($path_arr as $value){
if(!emptyempty($value)){
if(emptyempty($path))$path=$value;
else $path.='/'.$value;
is_dir($path) or mkdir($path,$mode);
}
}
if(is_dir($mkpath))return true;
return false;
}