touch
(PHP3 , PHP4)
touch --- 设定文件的修改时间
语法 :
int touch
(string filename [, int time])说明 :
试着去设定文件filename的修改时间,如果选项time没有给予,则使用目前的时间。
如果文件不存在,它将会建立一个文件。
成功则传回true,否则传回false。
Example :
<?php
if (touch ($FileName)) {
print "$FileName modification time has been changed to todays date and time";
} else {
print "Sorry Could Not change modification time of $FileName";
}?>