PHP 文件函数

PHP touch() 函数 用来设置文件的访问和修改时间。

语法

touch(file,mtime, atime) 

参数

参数说明必须/可选
file指定要修改的文件必须
mtime修改时间,默认为系统的当前时间可选
atime访问时间,默认为系统的当前时间可选

返回值

成功返回true,失败返回false。

文件不存在也返回false。

例子

通过下面的例子了解该函数的使用方法。

<?php
touch("test.txt");//修改为系统当前时间
$time = time() - 3600;//修改为一个小时之前的时间
touch('some_file.txt', $time)
?>