获取 "webdictionary.txt" 的最后访问时间:
<?php
echo fileatime("webdictionary.txt");
echo "<br>";
echo "Last access: ".date("F d Y H:i:s.", fileatime("webdictionary.txt"));
?>
运行示例 »
fileatime() 函数返回指定文件的最后访问时间。
笔记:该函数的结果被缓存。使用清除统计缓存()清除缓存。
笔记:每次读取文件数据时,文件的 atime 都会发生变化。如果应用程序访问大量文件或目录,这可能会降低性能。某些 Unix 系统禁用访问时间更新以提高性能。在这种情况下这个功能是没有用的。
fileatime(
filename)
Parameter | Description |
---|---|
filename | Required. Specifies the path to the file to check |
返回值: | 成功时最后访问时间为 Unix 时间戳,失败时为 FALSE |
---|---|
PHP 版本: | 4.0+ |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!