欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php禁止页面缓存输出的代码

程序员文章站 2022-03-14 16:46:32
...
  1. header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
  2. header('Last-Modified: ' . gmdate('D, d M Y H:i:s') . 'GMT');
  3. header('Cache-Control: no-cache, must-revalidate');
  4. header('Pragma: no-cache');
  5. ?>
复制代码