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


PHP filectime()用法及代码示例


filectime() 函数返回文件的最后更改时间。它将文件的最后更改时间作为 UNIX 时间戳返回,并在失败时返回 false。

用法

filectime ( file_path );

参数

  • file_path −将找到上次更改时间的文件的路径。

返回

filectime() 函数将文件的最后更改时间作为 UNIX 时间戳返回,失败时返回 false。

示例

<?php
   echo filectime("info.txt");
?>

输出

19346322544

现在让我们将文件的最后更改时间作为人类可读形式的日期。

示例

<?php
   echo "Last change time of the file:".date("F d Y H:i:s.",filectime("info.txt"));
?>

输出

Last change time of the file:September 23 2018 08:12:42

相关用法


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