小码哥的IT人生

首页 > PHP > php基础

PHP clearstatcache() 文件 函数 详解

php基础 2022-06-06 17:19:50小码哥的IT人生shichen

PHP clearstatcache() 函数

定义和用法

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

clearstatcache() 函数会缓存某些函数的返回信息,以便提供更高的性能。但是有时候,比如在一个脚本中多次检查同一个文件,而该文件在此脚本执行期间有被删除或修改的危险时,你需要清除文件状态缓存,以便获得正确的结果。要做到这一点,就需要使用 clearstatcache() 函数。

会进行缓存的函数,即受 clearstatcache() 函数影响的函数:

  1. stat()
  2. lstat()
  3. file_exists()
  4. is_writable()
  5. is_readable()
  6. is_executable()
  7. is_file()
  8. is_dir()
  9. is_link()
  10. filectime()
  11. fileatime()
  12. filemtime()
  13. fileinode()
  14. filegroup()
  15. fileowner()
  16. filesize()
  17. filetype()
  18. fileperms()

语法

clearstatcache()

实例

<?php
//检查文件大小
echo filesize("test.txt");
$file = fopen("test.txt", "a+");
// 截取文件
ftruncate($file,100);
fclose($file);
//清除缓存并再次检查文件大小
clearstatcache();
echo filesize("test.txt");
?>

输出:

792
100

版权所有 © 小码哥的IT人生
Copyright © phpcodeweb All Rights Reserved
ICP备案号:苏ICP备17019232号-2  

苏公网安备 32030202000762号

© 2021-2024