php技巧

关注公众号 jb51net

关闭
首页 > 网络编程 > PHP编程 > php技巧 > php 文件状态缓存

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 ( ) 清除缓存带来的影响
您可能感兴趣的文章:
阅读全文