JavaScript(JS)压缩混淆格式化批处理⼯具
因此今天我把它json化了.⽤json传输数据,也开放了api
API参数 : jscompress.sinaapp/api?get={type}&code=(code)&type={compress only}get={type},{type} 为可选的compress (压缩) format (格式化) shuffle(混淆) code=(code),(code) 为必要的源代码. JavaScript的源代码 type={compress},{compress} 注意该参数只有压缩的时候⽣效,可选 1(默认压缩) 2(YUI压缩) 3(GC压缩) 例:使⽤ POST
jscompress.sinaapp/api?get=compress&code=var a=1;var b=2;&type=2如果执⾏成功则返回结果: {"code":"var a=1,b=2;\n","original_size":"16 Byte","now_size":"13 Byte","status":"Closure Compiler
\u538b\u7f29\u5b8c\u6210.","minify":"81.25%"}
然后我写了⼀个php⽂件,可以调⽤这个⽹站的api,把整个⽬录所有的js⽂件压缩或者混淆,格式化后保存到⼀个新⽬录。这样就对那些懒上传⽂件的同学们基于⽅便了~~
直接下载地址: ⾼亮显⽰
复制代码代码如下:
<?php
/*
/## js 合并和压缩PHP脚本...可⽤于本地或者服务器.
/## 本⼯具只能处理utf-8编码的 *.js ⽂件.否则会接收不到结果
@ 风吟 (fengyin.name)
@ jscompress.sinaapp/
*/
javascript进度条set_time_limit(0);
function JsTools($options = array(
'basepath' =>'./', //需要处理的脚本路径...
'compiled' =>'./compiled/', //处理后新⽂件的路径...
'type' =>'compress', //可选 compress (压缩) format (格式化) shuffle (混淆)
'is_merger' =>true, // 是否需要把全部⽂件合并再进⾏处理 (压缩,格式化,混淆)
'engine' =>'1'//此项只对 type 为 compress 时有效,1(默认) 2 (yui) 3(Closure Compiler)
/*
yui 和 Google Closure Compiler 压缩是不可逆的,⼀般情况下使⽤默认即可
不推荐使⽤混淆.
*/
)){
if (is_dir($options['basepath'])) {
if ($dh = opendir($options['basepath'])) {
while (($file = readdir($dh)) !== false) {
if (strpos($file, '.js') !== false && strpos($file, '.min.js') === false) {
$js[] = $file;
}
}
closedir($dh);
}
}
if ($options['is_merger']) {
foreach($js as $jsfile) {
$jscode.= file_get_contents($jsfile).';';
}
$jscode = json_decode(api($jscode, $options['type'], $options['engine']), true);
file_put_contents($options['compiled'].'all.min.js', $jscode['code']);
} else {
foreach($js as $jsfile) {
$jscode = json_decode(api(file_get_contents($jsfile), $options['type'], $options['engine']), true);
file_put_contents($options['compiled'].str_replace('.js', '.min.js', $jsfile), $jscode['code']);
}
}
}
function api($code, $type, $engine) {
$ch = curl_init('jscompress.sinaapp/api');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, 'get='.$type.'&code='.urlencode($code).'&type='.$engine); $output = curl_exec($ch);
curl_close($ch);
return $output;
}
JsTools();
>

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。