• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

php clearstatcache()函数使用详解

php 搞代码 4年前 (2022-01-22) 34次浏览 已收录 0个评论

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

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

语法

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()

clearstatcache() 函数示例代码如下:

<?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 arstatca<em>/本2文来源[email protected]搞@^&代*@码2网</em><strong>搞gaodaima代码</strong>che(); echo filesize("test.txt"); ?>

上述代码将输出下面的结果:
792

100

以上就是php clearstatcache()函数使用详解的详细内容,更多请关注搞代码gaodaima其它相关文章!


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:php clearstatcache()函数使用详解

喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址