首页 > 开发 > PHP > 正文

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

2024-05-04 23:21:58
字体:
来源:转载
供稿:网友
实例如下:

复制代码 代码如下:


<?php  
  //Get   timenow  

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

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

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表