PHP中的简单javascript / jQuery缩小器

我想用以下方法压缩我的JS和jQuery代码:

<?php
require_once(dirname(__FILE__).'/minifier.php');
header("Content-Type:application/x-javascript");

//here catching and gzip {...]

//This file will be compressed.
ob_start("minifier");
?>

... here a lot of javascript code ...

我试过jsmin https://github.com/rgrove/jsmin-php/,但它不再被维护。 我更喜欢更容易的东西...任何帮助?

谢谢!


我一直在使用mlitn的包来完成这种任务。

完美无缺地工作

链接地址: http://www.djcxy.com/p/45711.html

上一篇: A simple javascript/jQuery minifier in PHP

下一篇: after combination javascript throws object is not a function error