Home > php教程 > php手册 > body text

PHP mkdir新建目录

WBOY
Release: 2016-06-06 19:47:29
Original
1927 people have browsed it

一、在本目录下新建目录 ?php $dir_url = 'aaa/'; if(!is_dir($dir_url)) { mkdir($dir_url, 0777); } ? 二、在级联创建目录 ?php $dir_url = '../../usr/aaa/'; if(!is_dir($dir_url)) { mkdir($dir_url, 0777, true); } ? 默认为false,true为级联创建目录

一、在本目录下新建目录

$dir_url = 'aaa/';
if(!is_dir($dir_url)) {
   mkdir($dir_url, 0777);
}
?>

二、在级联创建目录

$dir_url = '../../usr/aaa/';
if(!is_dir($dir_url)) {
   mkdir($dir_url, 0777, true);
}
?>

 

默认为false,true为级联创建目录,为true是才能新建成功,需注意。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template