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进程对所请求的文件具有足够的权限。
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进程对所请求的文件具有足够的权限。
本文地址:
/show-271172.html
版权声明:除非特别标注原创,其它均来自互联网,转载时请以链接形式注明文章出处。