Minify index.php
问题 Situation I'm struggling trying to minify my index.php file I've tried Here is what's in my : index.php <?php include 'master.php'; ?> <?php function htmlmin($buffer) { $search = array( '/\>[^\S ]+/s', '/[^\S ]+\</s', '/(\s)+/s' ); $replace = array('>','<','\\1'); if (preg_match("/\<html/i",$buffer) == 1 && preg_match("/\<\/html\>/i", $buffer) == 1) { $buffer = preg_replace($search, $replace, $buffer); } return $buffer; } ob_start("htmlmin"); ?> When I do view page source , I still see my