昨天分享了 http://jscompress.sinaapp.com/ 這個小工具後,發現大家還是很喜愛的。
因此今天我把它json化了.用json傳輸數據,也開放了api
本工具所有的功能實現都是由 http://jscompress.sinaapp.com/api 處理.(包括現在可以使用的這個在線壓縮)
所有的數據交換均由 HTTP POST 輸入處理後由 json 作為數據輸出格式.
例:使用 CURL... POST
{"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文件壓縮或者混淆,格式化後保存到一個新目錄。
這樣就對那些懶上傳文件的同學們基於方便了~~
直接下載地址: jstools.rar
高亮顯示
復制代碼 代碼如下:
<?php
/*
/## js 合並和壓縮PHP腳本...可用於本地或者服務器.
/## 本工具只能處理utf-8編碼的 *.js 文件.否則會接收不到結果
@ 風吟 (fengyin.name)
@ http://jscompress.sinaapp.com/
*/
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('http://jscompress.sinaapp.com/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();
?>