A small example that you can learn by looking at the code: php merge js request
Copy the code The code is as follows:
//Page Save as js.php
//Foreground request example http://localhost/js.php?f=1,2
//Request two files 1.js and 2.js
PHP
header("Content-Type:application/x-javascript");
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
header("Cache-Control: max-age=".(86400*30));
header("Expires: " .gmdate("D, d M Y H:i:s",time()+ 86400*30). "GMT");
if($_GET['f'])
{
$url = parse_url($_SERVER['REQUEST_URI']);
$arr_f = array_unique(explode(',' ,preg_replace("/.+//",'',$_GET['f'])));
foreach($arr_f as $v)
{
if(!empty($v))
{
include('./'.$v.'.js');
echo "n";
}
}
}
?>
http://www.bkjia.com/PHPjc/825023.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/825023.htmlTechArticleA small example that you can learn by looking at the code: php merge js request copy code The code is as follows: //Save the page as js. php //Foreground request example http://localhost/js.php?f=1,2 //Request two files 1.js and 2.js?PH...