当前位置:Gxlcms > php框架 > php 创建以UNIX时间戳命名的文件夹(示例代码)

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

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

实例如下:
代码如下:
<?php  
  //Get   timenow  

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

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

人气教程排行