我想使用PHPWee 缩小我的网站HTML、CSS和JS。下面是我修改它的代码here:
class WP_HTML_Compression
{
// Settings
protected $compress_css = true;
protected $compress_js = true;
protected $info_comment = true;
protected $remove_comments = true;
// Variables
protected $html;
public function __construct($html)
{
if (!empty($html)) {
$this->parseHTML($html);
}
}
public function __toString()
{
return $this->html;
}
protected function bottomComment($raw, $compressed)
{
$raw = strlen($raw);
$compressed = strlen($compressed);
$savings = ($raw-$compressed) / $raw * 100;
$savings = round($savings, 2);
return \'<!--HTML compressed, size saved \'.$savings.\'%. From \'.$raw.\' bytes, now \'.$compressed.\' bytes-->\';
}
protected function minifyHTML($html)
{
require_once ("vendor/phpwee-php-minifier/phpwee.php");
return \\PHPWee\\Minify::html($html);
}
public function parseHTML($html)
{
$this->html = $this->minifyHTML($html);
if ($this->info_comment) {
$this->html .= "\\n" . $this->bottomComment($html, $this->html);
}
}
protected function removeWhiteSpace($str)
{
$str = str_replace("\\t", \' \', $str);
$str = str_replace("\\n", \'\', $str);
$str = str_replace("\\r", \'\', $str);
while (stristr($str, \' \')) {
$str = str_replace(\' \', \' \', $str);
}
return $str;
}
}
function wp_html_compression_finish($html) {
return new WP_HTML_Compression($html);
}
function wp_html_compression_start() {
ob_start(\'wp_html_compression_finish\');
}
add_action(\'get_header\', \'wp_html_compression_start\');
但它不起作用。我仍然是未压缩的HTML、CSS、JS输出。它还有一个奇怪的结尾HTML输出的结尾:
....
....
....
</body>
</html>
<?
namespace PHPWee;
require_once("src/CssMin/CssMin.php");
require_once("src/HtmlMin/HtmlMin.php");
require_once("src/JsMin/JsMin.php");
// Open-source (BSD) PHP inline minifier functions for HTML, XHTML, HTML5, CSS 1-3 and Javascript.
// BSD Licensed - https://github.com/searchturbine/phpwee-php-minifier/blob/master/LICENSE
//
// Usage
// $output = \\PHPWee\\Minify::html($any_html);
// $output = \\PHPWee\\Minify::css($any_css);
// $output = \\PHPWee\\Minify::js($any_js);
class Minify{
public static function html($html){
return HtmlMin::minify($html);
}
public static function css($css){
return CssMin::minify($css);
}
public static function js($js){
return JsMin::minify($js);
}
}
发生了什么事?
我怎样才能做好呢?有什么想法吗?