(PHP 4, PHP 5, PHP 7, PHP 8)
touch — 设定文件的访问和修改时间
尝试将由 filename
给出的文件的访问和修改时间设定为给出的 mtime
。
注意访问时间总是会被修改的,不论有几个参数。
如果文件不存在,则会被创建。
版本 | 说明 |
---|---|
8.0.0 |
mtime 和 atime
现在可以为空。
|
示例 #1 touch() 例子
<?php
if (touch($filename)) {
echo $filename . ' modification time has been changed to present time';
} else {
echo 'Sorry, could not change modification time of ' . $filename;
}
?>
示例 #2 使用 mtime
参数的 touch()
<?php
// This is the touch time, we'll set it to one hour in the past.
$time = time() - 3600;
// Touch the file
if (!touch('some_file.txt', $time)) {
echo 'Whoops, something went wrong...';
} else {
echo 'Touched file with success';
}
?>
注意:
注意:不同文件系统对时间的判断方法可能是不相同的。