php不缓存数据头function nocache_headers() { // why are these @-silenced when other header calls aren't? @header( 'expires: wed, 11 jan 1984 05:00:00 gmt' ); @header( 'last-modified: ' . gmdate( 'd, d m y h:i:s' ) . ' gmt' ); @header( 'cache-control: no-cache, must-revalidate, max-age=0' ); @header( 'pragma: no-cache' ); }
http://www.bkjia.com/phpjc/447000.htmlwww.bkjia.comtruehttp://www.bkjia.com/phpjc/447000.htmltecharticlephp不缓存数据头 function nocache_headers() { // why are these @-silenced when other header calls arent? @header( expires: wed, 11 jan 1984 05:00:00 gmt ); @header( last-modifi...