php 解决文件状态缓存带来的问题

当使用以下函数时,会因为文件状态缓存,导致结果错误
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()

解决办法:在使用这些函数前,使用 clearstatcache ( ) 清除缓存带来的影响


你可能感兴趣的:(php 解决文件状态缓存带来的问题)