实例如下:
复制代码代码如下:
//Get timenow
$addtime=date("Ymd",time());
//Creat Dir
$testdir="./".$addtime."/";
if(file_exists($testdir)):
else:
mkdir($testdir,0777);
endif;
?>
http://www.bkjia.com/PHPjc/736782.html
www.bkjia.com
true
http://www.bkjia.com/PHPjc/736782.html
TechArticle
实例如下: 复制代码 代码如下: ?php //Get timenow $addtime=date("Ymd",time()); //Creat Dir $testdir="./".$addtime."/"; if(file_exists($testdir)): else: mkdir($testdir,07...