PHP壓縮html網頁程式碼 (清除空格,換行符,製表符,註解標記)。
有個不錯的方法就是壓縮HTML,壓縮html 其實就是:清除換行符號,清除製表符,去掉註解標記 。它所起到的作用不可小視。
現提供PHP 壓縮HTML函數。請大家不妨試試看,感覺還不錯吧。
不廢話了,直接上程式碼:
複製程式碼 程式碼如下:
/**
* 壓縮html : 清除換行符號,清除製表符,去掉註解標記
* @param $string
* @return 壓縮後的$string
**/
function compress_html($string)
($string = compress_html($string) rn", '', $string); //清除換行符號
$string = str_replace("n", '', $string); //清除換行符號
$string = str_replace("t", '', $string); //清除製表符
$pattern = array (
"/> *([^ ]*) *", //去掉註解標記
"/[s]+/",
"/ /",
"/" /",
"/ "/",
"'/*[^*]**/'"
);
$replace = array (
">\1" ",
"",
""",
""",
""
);
return preg_replace($pattern, $replace, $string);
return preg_replace($pattern, $replace, $string);
return
以上就介紹了網頁背景音樂代碼 PHP壓縮html網頁程式碼清除空格,換行符,製表符,註釋標記,包括了網頁背景音樂代碼方面的內容,希望對PHP教程有興趣的朋友有所幫助。
🎜 🎜