首页 > php文件操作 > 支持多平台的php目录创建函数

支持多平台的php目录创建函数

支持多平台的php教程目录创建函数,我们可以指定在那个目录下创建目录哦,取得指定文件夹的目录名称:

<?php
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;
            //在目录下生成一个config.php文件,当然这个文件可以自己定义了
            if (!file_exists($dirpath . '/' . $value . '/' . $file)) {
                $fo = fopen($dirpath . '/' . $value . '/' . $file, 'xb+'); //在这里的时候,我之前尝试用w+,结果失败,
                //在windows 下,我有创建成功,请注意了!所有建议用xb+,兼容多平台
                chmod($file, "0777");
                fwrite($fo, 'i is a zongzi ,here is config file!') or die('配置文件创建失败!请检查是否有此目录和文件的操作权限!');
                fclose($fo);
            }
            $arr[] = $value;
        }
    }
    return $arr;
}

               
               

本文地址:http://www.phprm.com/wenjian/fs1336.html

转载随意,但请附上文章地址:-)

标签:php目录 创建函数

相关文章

发表留言