clearstatcache() 函数用于清除文件状态缓存。
PHP 缓存以下函数返回的信息 −
这样做是为了提供更好的性能。
void clearstatecache()
clearstatcache()函数不返回任何值。
以下是一个示例,用于检查文件“tmp.txt”并清除缓存。
在线演示
<?php $file = fopen("tmp.txt", "a+"); // Clear cache clearstatcache(); echo "Cache cleared!"; ?>
Cache cleared!
以上是在PHP中的clearstatcache()函数的详细内容。更多信息请关注PHP中文网其他相关文章!