支持多平台的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 != '..')
- {
-
-
- if (!file_exists($dirpath.'/'.$value.'/'.$file))
- {
- $fo = fopen($dirpath.'/'.$value.'/'.$file,'xb+');
-
- chmod($file,"0777");
- fwrite( $fo,'i is a zongzi ,here is config file!') or die('配置文件创建失败!请检查是否有此目录和文件的操作权限!');
- fclose($fo);
- }
- $arr[] = $value;
- }
- }
- return $arr;
- }
|