当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP filemtime( )用法及代码示例


PHP中的filemtime()函数是一个内置函数,用于在修改其内容后返回指定文件的最后时间。 filemtime()函数将最后一次将文件更改为Unix时间戳记(成功时为Unix时间戳记),而将失败更改为False时返回。

文件名作为参数传递给filemtime()函数。将缓存filemtime()函数的结果,并使用一个名为clearstatcache()的函数来清除缓存。

用法:


filemtime($filename)

参数:PHP中的filemtime()函数仅接受一个参数$filename。它指定您要检查的文件。

返回值:当文件的内容被修改为Unix时间戳(成功时)和False(失败)时,它返回文件的最后一次时间。

错误与异常

  1. 时间分辨率可能因一个文件系统而异。
  2. 在某些禁用访问时间更新以提高性能的Unix系统上,此函数不起作用。

例子:

Input : echo filemtime("gfg.txt");
Output : 1525159574

Input : echo "Last modified: ".date("F d Y H:i:s.", 
                              filemtime("gfg.txt"));
Output : Last modified: May 1 2018 07:26:14.

以下示例程序旨在说明filemtime()函数。

程序1:

<?php 
  
// checking last time the contents 
// of a file were changed 
echo filemtime("gfg.txt"); 
  
?>

输出:

1525159574

程序2:

<?php 
  
// checking last time the contents 
// of a file were changed 
echo filemtime("gfg.txt"); 
  
// checking last time the contents of 
// a file were changed and formatting 
// the output of the date  
echo "Last modified: ".date("F d Y H:i:s.",  
                      filemtime("gfg.txt")); 
?>

输出:

1525159574
Last modified: May 1 2018 07:26:14.

参考:
http://php.net/manual/en/function.filemtime.php



相关用法


注:本文由纯净天空筛选整理自Shubrodeep Banerjee大神的英文原创作品 PHP | filemtime() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。