平时我们都会需要判断文件是否存在,is_file 和file_exists 都可以判断,但2个有区别。
is_file()
该函数的结果会被缓存。请使用 clearstatcache() 来清除缓存。
file_exists() 则不需要。
下面是会产生缓存的函数,如果需要多次比较判断结果,则需要在第二次执行时,先执行clearstatcache(),之后再操作;
官方的例子:
- //check filesize
- echo filesize("test.txt");
- echo "
"; -
- $file = fopen("test.txt", "a+");
- // truncate file
- ftruncate($file,100);
- fclose($file);
-
- //Clear cache and check filesize again
- clearstatcache();
- echo filesize("test.txt");
- ?>