温馨提示×

php filemtime如何设置

PHP
小樊
82
2024-11-27 23:29:21
栏目: 编程语言

filemtime() 是一个 PHP 函数,用于获取文件的修改时间

<?php
// 设置文件路径
$file_path = 'example.txt';

// 使用 time() 函数生成一个时间戳
$new_timestamp = time();

// 使用 filemtime() 函数将新的时间戳设置到文件中
if (file_exists($file_path)) {
    touch($file_path, $new_timestamp);
    echo "文件修改时间已设置为: " . date('Y-m-d H:i:s', $new_timestamp);
} else {
    echo "文件不存在!";
}
?>

在这个示例中,我们首先设置了要修改的文件路径($file_path)。然后,我们使用 time() 函数生成一个新的时间戳($new_timestamp)。接下来,我们使用 filemtime() 函数将新的时间戳设置到文件中。如果文件存在,我们将更新其修改时间并输出结果;否则,我们将输出文件不存在的消息。

0