要避免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輸出。請注意,這些方法主要針對瀏覽器緩存。如果您還需要避免服務器端緩存,您可能需要檢查服務器的配置文件或與服務器管理員聯系。