平时我们都会需要判断文件是否存在,is_file 和file_exists 都可以判断,但2个有区别。
is_file()
该函数的结果会被缓存。请使用 clearstatcache() 来清除缓存。
file_exists() 则不需要。
下面是会产生缓存的函数,如果需要多次比较判断结果,则需要在第二次执行时,先执行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()
官方的例子:
<?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 again
clearstatcache();
echo filesize("test.txt");
?>
本文介绍了PHP中用于判断文件存在的is_file()和file_exists()两个函数,强调了is_file()的结果会被缓存,而file_exists()则不会。在需要多次判断时,使用is_file()需注意清除缓存。通过示例代码展示了如何在文件大小改变后,正确地使用clearstatcache()更新文件状态信息。
481

被折叠的 条评论
为什么被折叠?



