Esempio n. 1
0
 /**
  * Sends the cache control header.
  */
 public static function sendCacheControl($cacheControl = 'must-revalidate, proxy-revalidate, private, no-cache, max-age=0')
 {
     header('Cache-Control: ' . $cacheControl);
     self::$sentCacheControl = true;
 }