當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。