当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP touch()用法及代码示例


touch() 函数设置文件的访问和修改时间。成功时返回 TRUE,失败时返回 FALSE。

用法

touch(filename, time, atime)

参数

  • filename −设置文件名。

  • time −设置时间。默认为当前系统时间。

  • atime −设置访问时间。默认为当前系统时间。

返回

touch() 函数在成功时返回 TRUE,在失败时返回 FALSE。

示例

<?php
$myfile = "new.txt";
// changing the modification time to current system time
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;
// changing the modification time
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.

相关用法


注:本文由纯净天空筛选整理自Samual Sam大神的英文原创作品 touch() function in PHP。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。