Php/func filesystem touch

来自菜鸟教程
跳转至:导航、​搜索

PHP touch()函数

❮PHP文件系统参考

设置指定文件的访问和修改时间:

<?php

  filename = "test.txt";
if (touch($filename)) {
  echo 
  $filename . " modification time has been changed to present time";
} else {
  
  echo "Sorry, could not change modification time of " . $filename;
}

?>



定义和用法

touch()函数设置指定文件的访问和修改时间。

注意: 如果指定的文件不存在,将创建该文件。

句法

touch(filename, time, atime)

参数值

参数 描述
filename 需要。指定要触摸的文件
time 可选的。设置触摸时间。当前系统时间默认设置
atime 可选的。设置访问时间。如果未设置任何参数,则默认为当前系统时间;如果设置了该参数,则默认为与时间参数相同

技术细节

返回值: 成功则为TRUE,失败则为FALSE
PHP版本: 4.0+
PHP更新日志: PHP 5.3-

❮PHP文件系统参考