2024-10-09

php函数文件操作指南:如何获取文件的最后修改时间?

获取文件的最后修改时间的方法有三种:使用 filemtime() 函数返回 unix 时间戳、使用 stat() 函数返回包含最后修改时间的信息数组、使用 datetime 对象解析时间戳。

php函数文件操作指南:如何获取文件的最后修改时间?

PHP 函数文件操作指南:如何获取文件的最后修改时间

获取文件的最后修改时间对于跟踪文件更新或确定文件何时需要重新加载非常有用。在 PHP 中,有几种方法可以获取文件的最后修改时间。

使用 filemtime() 函数

filemtime() 函数是最简单的方法,它将返回给定文件自 1970 年 1 月 1 日以来的 Unix 时间戳。

$timestamp = filemtime('file.txt');
登录后复制

使用 stat() 函数

stat() 函数返回一个数组,其中包含有关文件的信息,包括最后修改时间。

$result = stat('file.txt');
$timestamp = $result['mtime'];
登录后复制

使用 DateTime 对象

您可以使用 DateTime 对象获取文件的最后修改时间,该对象可以解析时间戳。

$timestamp = filemtime('file.txt');
$date = new DateTime();
$date->setTimestamp($timestamp);
echo $date->format('Y-m-d H:i:s');
登录后复制

实战案例

假设您有一个名为 file.txt 的文件,并且您希望在文件自上次读取后发生更改时通知用户。以下是如何使用 filemtime() 函数实现的:

$last_modified = filemtime('file.txt');

if ($last_modified > $_SESSION['last_read']) {
    // 文件已被修改
    echo '文件已更新!';
    $_SESSION['last_read'] = $last_modified;
}
登录后复制

以上就是php函数文件操作指南:如何获取文件的最后修改时间?的详细内容,更多请关注php中文网其它相关文章!

https://www.php.cn/faq/1041296.html

发表回复

Your email address will not be published. Required fields are marked *