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.
相關用法
- PHP touch( )用法及代碼示例
- PHP token_get_all()用法及代碼示例
- PHP time()用法及代碼示例
- PHP tan()用法及代碼示例
- PHP timezone_version_get()用法及代碼示例
- PHP timezone_name_get()用法及代碼示例
- PHP time_sleep_until( )用法及代碼示例
- PHP timezone_location_get()用法及代碼示例
- PHP tmpfile()用法及代碼示例
- PHP timezone_transitions_get()用法及代碼示例
- PHP tmpfile( )用法及代碼示例
- PHP trait_exists()用法及代碼示例
- PHP timezone_open()用法及代碼示例
- PHP timezone_identifiers_list()用法及代碼示例
- PHP time_nanosleep()用法及代碼示例
- PHP trim()用法及代碼示例
- PHP trigger_error()用法及代碼示例
- PHP tanh( )用法及代碼示例
注:本文由純淨天空篩選整理自Samual Sam大神的英文原創作品 touch() function in PHP。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。