该touch()
方法设置文件的访问和修改时间。成功返回TRUE,失败返回FALSE。
touch(filename, time, atime)
filename-设置文件名。
时间-设置时间。默认为当前系统时间。
atime-设置访问时间。默认为当前系统时间。
如果touch()
成功,该函数将返回TRUE,否则将返回FALSE。
<?php $myfile = "new.txt"; //将修改时间更改为当前系统时间 if (touch($myfile)) { echo ("The modification time of $myfile set to current time."); } else { echo ("The modification time of $myfile can’t be updated."); } ?>
输出结果
The modification time of new.txt set to current time.
让我们来看另一个例子。
<?php $myfile = "new.txt"; $set_time = time() - 28800; //更改修改时间 if (touch($myfile, $set_time)) { echo ("The modification time of $myfile updated to 8 hrs in the past."); } else { echo ("The modification time of $myfile can’t be updated."); } ?>
输出结果
The modification time of new.txt updated to 8 hrs in the past.