{site_name}

{site_name}

🌜 搜索

PHP函数fileatime()用于获取指定文件的最后访问时间(access time),返回一个UNIX时间戳

php 𝄐 0
php file get contents,php final,php FIELD排序,php FIle对象,Phpfind最新版本
PHP函数fileatime()用于获取指定文件的最后访问时间(access time),返回一个UNIX时间戳。

函数语法:

fileatime ( string $filename ) : int


参数说明:
- $filename:要获取最后访问时间的文件路径。

示例:
假设当前目录下有一个名为“example.txt”的文本文件,我们可以使用以下代码来获取该文件的最后访问时间:

php
$file = "example.txt";
$last_access_time = fileatime($file);
echo "The last access time of ".$file." is: ".date("Y-m-d H:i:s", $last_access_time);


输出结果类似如下内容:

The last access time of example.txt is: 2023-03-27 12:34:56


注意:要获取访问时间之前,需要确保PHP进程对所请求的文件具有足够的权限。