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


PHP fileatime( )用法及代码示例


PHP中的fileatime()函数是一个内置函数,用于返回指定文件的最后访问时间。 fileatime()函数以Unix时间戳记成功返回文件的最后访问时间,失败则返回False。

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

用法:


fileatime($filename)

参数:PHP中的fileatime()函数仅接受一个参数$filename。它指定您要检查其最后访问时间的文件。

返回值:如果成功,它将返回文件的最后访问时间作为Unix时间戳,如果失败则返回False。

错误与异常

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

例子:

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

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

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

程序1:

<?php 
  
// checking last accessed time of a file  
echo fileatime("gfg.txt"); 
  
?>

输出:

1525159574

程序2:

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

输出:

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

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



相关用法


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