当前位置:首页 > PHP教程 > php文件操作 > 列表

php filemtime定时生成文件代码

发布:smiling 来源: PHP粉丝网  添加日期:2013-12-23 15:17:53 浏览: 评论:0 

filemtime() 函数返回文件内容上次的修改时间,若成功,则时间以 Unix 时间戳的方式返回,若失败,则返回 false。

语法:filemtime(filename)

  1. $path = "a.txt"
  2. iffile_exists$path ) ){ 
  3.    
  4.  $filetimes = filemtime($path); 
  5.  $cutime =time(); 
  6.  $uptime = 900;//15分钟生成一次 
  7.  if ($cutime-$filetimes>$uptime
  8.  { 
  9.    
  10.   $h = fopen$path,'w+' ); 
  11.   fwrite( $h,'到了更新的时间' ); 
  12.   fclose( $h ); 
  13.    
  14.  } 
  15.   
  16. else 
  17.   $h = fopen$path,'w+' ); 
  18.   fwrite( $h,'文件不存在' ); 
  19.   fclose( $h ); 
  20. }

Tags: filemtime 定时 生成文件

分享到: