PHP clearstatcache() 函數(shù)
PHP clearstatcache() 函數(shù)

定義和用法
clearstatcache() 函數(shù)清除文件狀態(tài)緩存。
PHP 會緩存某些函數(shù)的返回信息,以便提供更高的性能。但是有時候,比如在一個腳本中多次檢查同一個文件,而該文件在此腳本執(zhí)行期間有被刪除或修改的危險時,你需要清除文件狀態(tài)緩存,以便獲得正確的結(jié)果。要做到這一點,請使用 clearstatcache() 函數(shù)。
語法
clearstatcache()
提示和注釋
提示:會進(jìn)行緩存的函數(shù),即受 clearstatcache() 函數(shù)影響的函數(shù):
- 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 again
clearstatcache();
echo filesize("test.txt");
?>
//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 again
clearstatcache();
echo filesize("test.txt");
?>
上面的代碼將輸出:
792
100
100

相關(guān)文章
- PHP 數(shù)組排序
- PHP For 循環(huán)
- PHP 包含文件 include 和 require 語句
- PHP 異常處理
- PHP array_diff() 函數(shù)
- PHP array_diff_assoc() 函數(shù)
- PHP array_filter() 函數(shù)
- PHP array_intersect_ukey() 函數(shù)
- PHP array_key_last() 函數(shù)
- PHP array_multisort() 函數(shù)
- PHP array_reduce() 函數(shù)
- PHP array_sum() 函數(shù)
- PHP array_uintersect_assoc() 函數(shù)
- PHP array_unique() 函數(shù)
- PHP array_values() 函數(shù)
- PHP array_walk() 函數(shù)
- PHP arsort() 函數(shù)
- PHP 5 Array 函數(shù)
- PHP 5 Date/Time 函數(shù)
- PHP 雜項 函數(shù)