目录

PHP filectime() 函数

❮ PHP 文件系统参考

示例

获取"webdictionary.txt"的最后更改时间:

<?php
echo filectime("webdictionary.txt");
echo "<br>";
echo "Last changed: ".date("F d Y H:i:s.", filectime("webdictionary.txt"));
?>
运行示例 »

定义和用法

filectime() 函数返回文件上次更改的时间。

此函数检查 inode 更改以及常规更改。当权限、所有者、组或其他元数据发生更改时,索引节点就会发生更改。

提示:使用文件时间()函数返回文件内容上次更改的时间。

笔记:该函数的结果被缓存。使用清除统计缓存()清除缓存。

语法

filectime( filename)

参数值

Parameter Description
filename Required. Specifies the path to the file to check


技术细节

返回值: 成功时最后更改时间为 Unix 时间戳,失败时为 FALSE
PHP 版本: 4.0+

❮ PHP 文件系统参考