定義和用法
clearstatcache()函數的作用是:清除文件狀態緩存。
PHP的緩存數據對更快更好的運行函數是非常有利的。如果一個文件在腳本中測試了多次,你也許會禁止對正確的結果進行緩存。為了實現這點,你可以使用clearstatcache()函數。
語法
clearstatcache()
提示和注意
提示:執行緩存的函數:
stat()
lstat()
file_exists()
is_writable()
is_readable()
is_executable()
is_file()
is_dir()
is_link()
filectime()
fileatime()
filemtime()
fileinode()
filegroup()
fileowner()
filesize()
filetype()
fileperms()
案例
復制代碼 代碼如下:
<?php
//check filesize
echo filesize("test.txt");
echo "<br />";
$file = fopen("test.txt", "a+");
// truncate file
ftruncate($file,100);
fclose($file);//Clear cache and check filesize againcle
arstatcache();
echo filesize("test.txt");
?>
上述代碼將輸出下面的結果:
792100