欢迎各位兄弟 发布技术文章

这里的技术是共享的

You are here

php判断目录是否存在 创建

shiping1 的头像

php判断目录是否存在 创建

 
2014-01-02 16:48kun008008 | 三级

file_exists() 函数检查文件或目录是否存在。

1
2
3
4
5
6
7
8
<?php
$filename '/path/to/foo.txt';
if (file_exists($filename)) {   
 echo "The file $filename exists";
else {    
 echo "The file $filename does not exist";
}
?>
2014-01-02 16:26坏锐 | 六级
1
2
3
if(!is_dir($dirname)) {
    mkdir($dirname, 0777, true);
}
2014-01-02 16:10热心网友最快回答
bool is_dir ( string $filename )
判断给定的$filename是否为目录,是返回TRUE,否返回FALSE

普通分类: