程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> PHP clearstatcache()函數詳解

PHP clearstatcache()函數詳解

編輯:關於PHP編程

定義和用法
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

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved