Home > php教程 > php手册 > body text

php合并js请求的例子

WBOY
Release: 2016-06-06 20:26:53
Original
1260 people have browsed it

php合并js请求的例子,直接看代码吧。

看代码就会的小例子:php合并js请求

复制代码 代码如下:


//页面保存为js.php
//前台请求范例?f=1,2
//请求1.js,2.js两个文件
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";
  }
 }
}
?>

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!