PHP folder creation code

Source: Internet
Author: User
Tags tmp folder
Write a simple PHP code to create a folder. Write a simple PHP code to create a folder. first, obtain the path of the current directory, and then determine whether the folder exists. if the folder does not exist, the code is created. Define (DIR_ROOT, str_replace (\,,

First, obtain the path of the current directory, and then determine whether the folder exists. if it does not exist, it is created.

Define ('dir _ root', str_replace ('\', '/', dirname (_ FILE __))); // Obtain the physical path of the current file $ tmp_file_path = DIR_ROOT. '/tmp/'; // add the tmp directory path under the root directory if (is_dir ($ tmp_file_path) echo "tmp folder exists! "; Else {mkdir ($ tmp_file_path, 0700); // if the tmp directory does not exist, echo is created." The tmp folder does not exist. The creation is successful! "; // Not detected whether the creation is successful echo" tmp directory is ". $ tmp_file_path;}?>

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.