<font face="courier new, courier, mono" color="#0000ff" size="3"> <hr> <br><br><title>访问文件时间属性</title> <br><br><br><br> $LastAccess = fileatime("data.txt");<br> print("文件最后的存取时间为:");<br> print(date("l F d, Y", $LastAccess));<br> print("<br>");<br>?><br><br> $LastA = filectime("data.txt");<br> print("文件最后的改变时间:");<br> print(date("l F d, Y", $LastA));<br> print("<br>");<br>?><br><br> $LastB = filemtime("data.txt");<br> print("文件最后的修改时间:");<br> print(date("l F d, Y", $LastB));<br> print("<br>");<br>?><br><br> <hr> <img alt="" hspace="0" src="http://img.bitscn.com/upimg/php/20070123/11E5513G02015635.jpg" align="baseline" border="0"></font>