filemtime()
是 PHP 中的一个内置函数,用于获取文件的修改时间
touch()
函数更新文件的时间戳:<?php
// 设置文件路径
$file = 'path/to/your/file.txt';
// 更新文件的访问时间和修改时间
if (touch($file)) {
echo "文件时间已成功更新";
} else {
echo "无法更新文件时间";
}
?>
touch()
函数会尝试更新文件的访问时间和修改时间。如果成功,它将返回 true
,否则返回 false
。
file_put_contents()
或其他文件操作函数更新文件内容,从而间接更新文件时间:<?php
// 设置文件路径
$file = 'path/to/your/file.txt';
// 更新文件内容
$newContent = "这是新的文件内容。\n";
if (file_put_contents($file, $newContent) === false) {
echo "无法更新文件内容";
} else {
// 更新文件时间
if (touch($file)) {
echo "文件时间已成功更新";
} else {
echo "无法更新文件时间";
}
}
?>
在这个例子中,我们首先使用 file_put_contents()
函数更新文件的内容。然后,我们使用 touch()
函数更新文件的访问时间和修改时间。如果文件内容更新成功,file_put_contents()
将返回 true
,否则返回 false
。