当前位置:Gxlcms > PHP教程 > php创建以UNIX时间戳命名的文件夹(示例代码)_php实例

php创建以UNIX时间戳命名的文件夹(示例代码)_php实例

时间:2021-07-01 10:21:17 帮助过:24人阅读

实例如下:
代码如下:
//Get timenow

$addtime=date("Ymd",time());

//Creat Dir
$testdir="./".$addtime."/";
if(file_exists($testdir)):
else:
mkdir($testdir,0777);
endif;
?>

人气教程排行