Home  >  Article  >  php教程  >  php使用递归创建多级目录,php递归

php使用递归创建多级目录,php递归

WBOY
WBOYOriginal
2016-06-13 08:54:361174browse

php使用递归创建多级目录,php递归

<?<span>php
</span><span>header</span>('Content-type:text/html;charset=utf8'<span>);
</span><span>echo</span> "Loading time:".<span>date</span>('Y-m-d H:i:s'<span>);
</span><span>sleep</span>(5<span>);
</span><span>echo</span> "<br>"<span>;
</span><span>echo</span> "End time:".<span>date</span>('Y-m-d H:i:s'<span>);
</span><span>//</span><span> 多级目录新建</span>
<span>function</span> createFolder(<span>$path</span><span>){
    </span><span>if</span>(!<span>file_exists</span>(<span>$path</span><span>)){
        createFolder(</span><span>dirname</span>(<span>$path</span><span>));
        </span><span>mkdir</span>(<span>$path</span>, 0777<span>);
    }
}

createFolder(</span>"/Library/WebServer/Documents/aa/bb/cc"<span>);
</span>?>

php使用递归创建多级目录

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn