Help to see what this code has to do with the problem

Source: Internet
Author: User
Prawn help See what's wrong with this code?
When running this module, the following Scarlet Letter part error Warning:mkdir () [Function.mkdir]: No such file or directory



/**
* Function Name: Createdir
* Function function: Create folder
* Input Parameters:
$root----------------Root Path
$type----------------Types
* Function return Value: Return value description
* Other Instructions: description
*/
function Createdir ($root, $type)
{
if (!file_exists ($root. " /". $type))
{
$dir _arr = $root. " /". $type;
if (mkdir ($dir _arr) &&chmod ($dir _arr,0777))
{
Return true;
}
Else
{
Return false;
}
}
Else
{
Return true;
}
}




------Solution--------------------
PHP Code
if (!file_exists ($root. " /". $type))//  here will be! Remove {$dir _arr = $root. " /". $type;
------Solution--------------------
BOOL MkDir (string $pathname [, int $mode = 0777 [, bool $recursive = False [, resource $context]])

Take mode, with true, to create recursively. [Email protected], check the mkdir return value.
  • 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.