PHP Gets the directory under the specified directory, and then creates the file under the obtained directory, multiplatform _php tutorial

Source: Internet
Author: User
Copy CodeThe code is as follows:
Gets the directory name of the specified folder
function Get_dir_name ($dir _path, $file)
{
$dirpath = $dir _path;
$dir = Scandir ($dirpath);
foreach ($dir as $key = $value)
{
if (Is_dir ($dirpath. ' /'. $value) && $value! = '. ' && $value! = ' ... ')
{
echo $dirpath. ' /'. $value. ' /'. $file;
Generate a config.php file in the directory, of course, this file can be defined by itself
if (!file_exists ($dirpath. ' /'. $value. ' /'. $file))
{
$FO = fopen ($dirpath. ' /'. $value. ' /'. $file, ' xb+ '); Here, when I tried to use w+, the result failed,
Under Windows, I have created success, please note! All recommendations with xb+, multi-platform compatible
chmod ($file, "0777");
Fwrite ($FO, ' I am a zongzi, here are config file! ') or Die (' profile creation failed!) Check if you have permission to operate this directory and file! ');
Fclose ($FO);
}
$arr [] = $value;
}
}
return $arr;
}

http://www.bkjia.com/PHPjc/324053.html www.bkjia.com true http://www.bkjia.com/PHPjc/324053.html techarticle Copy the code as follows://Gets the directory name of the specified folder function get_dir_name ($dir _path, $file) {$dirpath = $dir _path; $dir = Scandir ($dirpath); for Each ($dir as $key = $va ...

  • 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.