最新的Web开发教程
 

PHP clearstatcache() Function


<完整PHP文件系统参考

定义和用法

clearstatcache()函数清除文件状态缓存。

PHP缓存数据有更好的表现某些功能。 如果一个文件在脚本中测试了多次,你可能想避免缓存得到正确的结果。 要做到这一点,可以使用clearstatcache()的功能。

句法

clearstatcache()

提示和注意

Tip:功能被缓存:

  • 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");
?>

代码的输出以上可以是:

792
100

<完整PHP文件系统参考