PHP Loop detects if a directory exists and creates (looping create directory) _php tutorial

Source: Internet
Author: User
Looping through the creation of directory methods
This will generate the Image.gif directory
Copy CodeThe code is as follows:
$filepath = "Test/upload/2010/image.gif";
Mk_dir ($filepath);
Looping through the creation of catalogs
function Mk_dir ($dir, $mode = 0755)
{
if (Is_dir ($dir) | | @mkdir ($DIR, $mode)) return true;
if (!mk_dir (DirName ($dir), $mode)) return false;
Return @mkdir ($dir, $mode);
}

The second method:
Copy CodeThe code is as follows:
$filepath = "Test/upload/2010/image.gif";
Createdir (DirName ($filepath));
The next thing you can do is move_uploaded_file!

/*
* Function: Loop Detect and Create folder
* Parameters: $path folder path
Returns
*/
function Createdir ($path) {
if (!file_exists ($path)) {
Createdir (DirName ($path));
mkdir ($path, 0777);
}
}
?>

http://www.bkjia.com/PHPjc/322877.html www.bkjia.com true http://www.bkjia.com/PHPjc/322877.html techarticle Loop Create Directory method this generates the Image.gif directory copy code code as follows: $filepath = "Test/upload/2010/image.gif"; Mk_dir ($filepath);//Cycle Create directory function Mk_di ...

  • Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.