Home >php教程 >php手册 >PHP 循环检测并生成目录 chkDir($dirname,$split='/')

PHP 循环检测并生成目录 chkDir($dirname,$split='/')

WBOY
WBOYOriginal
2016-06-13 09:24:221196browse

PHP 循环检测并生成目录 chkDir($dirname,$split='/')

自己写的,在MVC框架里面可以直接使用!

/**
 * @author      F.Z.B <default7@zbphp.com>
 * @description 循环检测目录
 *
 * @param        $dir
 * @param string $split
 *
 * @return bool
 */
function chkDir($dir, $split = &#39;/&#39;)
{
    preg_match_all(&#39;/([^\/]+)\/?/&#39;, str_replace(&#39;\\&#39;, &#39;/&#39;, trim($dir)), $matches);
    if (!empty($matches[1])) {
        $dir = &#39;.&#39;;
        $i = 0;
        $len = count($matches[1]);
        while (true) {
            if ($i >= $len) break;
            $dir .= $split . $matches[1][$i];
            if (!is_dir($dir) && mkdir($dir, 0777)) @chmod($dir, 0777);
            $i++;
        }
    }

    return true;
}

用法:

$savePath = &#39;/Uploads/clubImg/2014/09/27/1122_201409272046541186.jpg

chkDir( dirname($savePath) );


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