YII Blog
Yeah Cheung 's Yeah Cheung
yeah
如需合作,请发邮件! (realloveyou@foxmail.com)
热门文章
搜索
计数器
64545
最新留言
链接
最新评论
设置文件的修改时间
Dec 24, 2009 01:45:13 AM | Comments(0) | Category:PHP学习 | Tags:设置文件的修改时间
bool touch ( string $filename [, int $time= time() [, int $atime ]] )
<?php
if (touch($FileName)) {
echo "$FileName modification time has been changed to present time";
} else {
echo "Sorry, could not change modification time of $FileName";
}
?>
<?php
/*
* This is the touch time, we'll set it to one hour
* in the past.
*/
$time = time() - 3600;
/* Touch the file */
if(!touch('some_file.txt', $time))
{
echo 'Whoops, something went wrong...';
}
else
{
echo 'Touched file with success';
}
?>
<?php
if (touch($FileName)) {
echo "$FileName modification time has been changed to present time";
} else {
echo "Sorry, could not change modification time of $FileName";
}
?>
<?php
/*
* This is the touch time, we'll set it to one hour
* in the past.
*/
$time = time() - 3600;
/* Touch the file */
if(!touch('some_file.txt', $time))
{
echo 'Whoops, something went wrong...';
}
else
{
echo 'Touched file with success';
}
?>