PHP 中的 clearstatcache() 函数
phpprogrammingserver side programming
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+"); // 清除缓存 clearstatcache(); echo "缓存已清除!"; ?>
输出
缓存已清除!