要避免PHP输出缓存,您可以通过以下方法:
<meta http-equiv="Cache-Control" content="no-store, no-cache, must-revalidate, max-age=0" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
header('Cache-Control: no-store, no-cache, must-revalidate, max-age=0');
header('Pragma: no-cache');
header('Expires: 0');
这将确保浏览器不会缓存您的PHP输出。请注意,这些方法主要针对浏览器缓存。如果您还需要避免服务器端缓存,您可能需要检查服务器的配置文件或与服务器管理员联系。