0
大家好我有使用JSMin縮小JavaScript PHP函數,但我希望有一個正則表達式與a或b縮小JavaScript有效地使用PHP
function foo(long_arg_name, long_arg_name2){ alert(long_arg_name + long_arg_name); }
更換 長參數名稱
function foo(a,b){ alert(a+b); }
大家好我有使用JSMin縮小JavaScript PHP函數,但我希望有一個正則表達式與a或b縮小JavaScript有效地使用PHP
function foo(long_arg_name, long_arg_name2){ alert(long_arg_name + long_arg_name); }
更換 長參數名稱
function foo(a,b){ alert(a+b); }
您可以使用此插件:
https://github.com/promatik/PHP-JS-CSS-Minifier
它使用該minifier http://javascript-minifier.com/
,或是使用 http://javascript-minifier.com/examples
這個腳本<?php
// setup the URL, the JS and the form data
$url = 'http://javascript-minifier.com/raw';
$js = file_get_contents('./public/ready.js');
$data = array(
'input' => $js
);
// init the request, set some info, send it and finally close it
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$minified = curl_exec($ch);
curl_close($ch);
// output the $minified
echo $minified;
?>
不要忘了緩存的一切:)
你並不總是得到什麼你要。 – 2014-09-20 12:36:53