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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。