码迷,mamicode.com
首页 > Web开发 > 详细

php中fileatim,filectime和filemtime函数的区别

时间:2014-10-30 22:21:32      阅读:343      评论:0      收藏:0      [点我收藏+]

标签:sp   strong   文件   on   cti   代码   bs   ef   时间   

  1. Fileatim(): 文件最后访问的时间
  2. Filemtime() 是文件最近一次被修改的时间
  3. Filectime() 创建文件的时间(文件的权限,所有者改变的时间)

 

代码:

<?php

    $path3 = ‘test.txt‘;

    date_default_timezone_set(‘Asia/Shanghai‘);

    echo date(‘Y-m-d h:i:s‘, fileatime($path3));

    echo(‘<br/>‘);

    echo date(‘Y-m-d h:i:s‘, filectime($path3));

    echo(‘<br/>‘);

    echo date(‘Y-m-d h:i:s‘, filemtime($path3));

?>

php中fileatim,filectime和filemtime函数的区别

标签:sp   strong   文件   on   cti   代码   bs   ef   时间   

原文地址:http://www.cnblogs.com/cbyniypeu/p/4063661.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!