php压缩多个CSS/JS文件
程序员文章站
2022-05-13 20:29:39
...
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