欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

php压缩多个CSS/JS文件

程序员文章站 2022-05-24 20:35:04
...
1:压缩css

使用:

test

2:压缩js,利用jsmin类:

来源:http://code.google.com/p/minify/

header('Content-type: text/javascript');   
require 'jsmin.php';   
echo JSMin::minify(file_get_contents('common.js') . file_get_contents('common2.js'));  //phprm.com