clearstatcache() 函数用于清除文件状态缓存。
PHP 缓存以下函数返回的信息 −
- stat()
- lstat()
- file_exists()
- is_writable()
- is_readable()
- is_executable()
- is_file()
- is_dir()
- filegroup()
- fileowner()
- filesize()
- filetype()
- fileperms()
这样做是为了提供更好的性能。
语法
void clearstatecache()
登录后复制
参数
- NA
返回值
clearstatcache()函数不返回任何值。
示例
以下是一个示例,用于检查文件“tmp.txt”并清除缓存。
在线演示
<?php $file = fopen("tmp.txt", "a+"); // Clear cache clearstatcache(); echo "Cache cleared!"; ?>
登录后复制
输出
Cache cleared!
登录后复制
以上就是在PHP中的clearstatcache()函数的详细内容,更多请关注php中文网其它相关文章!