The example is as follows:
Copy code The code is as follows:
//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.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/736782.htmlTechArticleThe example is as follows: Copy the code as follows: ?php //Get timenow $addtime=date("Ymd",time ()); //Creat Dir $testdir="./".$addtime."/"; if(file_exists($testdir)): else: mkdir($testdir,07...