PHP fileatime() 函數(shù)
PHP fileatime() 函數(shù)

定義和用法
fileatime() 函數(shù)返回指定文件的上次訪問時(shí)間。
如果成功,該函數(shù)將以 Unix 時(shí)間戳形式返回文件的上次訪問時(shí)間。如果失敗,則返回 FALSE。
語(yǔ)法
fileatime(filename)
參數(shù) | 描述 |
---|---|
filename | 必需。規(guī)定要檢查的文件。 |
提示和注釋
注釋:該函數(shù)的結(jié)果會(huì)被緩存。請(qǐng)使用 clearstatcache() 來清除緩存。
注釋:文件的訪問時(shí)間應(yīng)該在不論何時(shí)讀取了該文件中的數(shù)據(jù)塊時(shí)被更改。部分 Unix 系統(tǒng)關(guān)閉訪問時(shí)間更新,這是因?yàn)楫?dāng)一個(gè)應(yīng)用程序定期訪問大量文件時(shí)很影響性能,關(guān)閉訪問時(shí)間更新可以提高這類程序的性能。USENET 新聞組假脫機(jī)是一個(gè)常見的例子。在這種文件系統(tǒng)下,本函數(shù)沒有用處。
實(shí)例
<?php
echo fileatime("test.txt");
echo "<br />";
echo "Last access: ".date("F d Y H:i:s.",fileatime("test.txt"));
?>
echo fileatime("test.txt");
echo "<br />";
echo "Last access: ".date("F d Y H:i:s.",fileatime("test.txt"));
?>
上面的代碼將輸出:
1140684501
Last access: February 23 2006 09:48:21.
Last access: February 23 2006 09:48:21.

相關(guān)文章
- PHP 教程
- PHP For 循環(huán)
- PHP 包含文件 include 和 require 語(yǔ)句
- PHP 文件上傳
- PHP array_diff_assoc() 函數(shù)
- PHP array_fill() 函數(shù)
- PHP array_intersect_ukey() 函數(shù)
- PHP array_key_first() 函數(shù)
- PHP array_keys() 函數(shù)
- PHP array_pop() 函數(shù)
- PHP array_push() 函數(shù)
- PHP array_reduce() 函數(shù)
- PHP array_sum() 函數(shù)
- PHP array_udiff_uassoc() 函數(shù)
- PHP array_walk() 函數(shù)
- PHP asort() 函數(shù)
- PHP count() 函數(shù)
- PHP each() 函數(shù)
- PHP pos() 函數(shù)
- PHP 5 MySQLi 函數(shù)