Example #1
0
File: js.php Project: pihizi/qf
 function index()
 {
     $content = JS::cache_content($_GET['f']);
     header('Expires: Thu, 15 Apr 2100 20:00:00 GMT');
     header('Pragma: public');
     header('Cache-Control: max-age=604800');
     header('Content-Type: text/javascript; charset=UTF-8');
     //header('Content-type: application/javascript; charset:utf-8');
     ob_start('ob_gzhandler');
     echo $content;
     ob_end_flush();
     exit;
 }