所以我试图获取文件的最后修改日期,然后将其更新为当前时间,但是当我查看结果时,我在 $oldtime 和 $newtime 中都得到了相同的时间戳
$file = 'test.txt';
$oldtime = filemtime($file);
touch($file, time());
$newtime = filemtime($file);
echo '<h1>old</h1>';
print_r(getdate($oldtime));
echo '<h1>new</h1>';
print_r(getdate($newtime));