Php output compressed HTML page code instance Program

Source: Internet
Author: User
Tags wordpress blog

Compressing the page input is to remove all unused characters and then put all the Code together. This is helpful for seo, but it is poorly readable, we often see a lot of websites doing this. It is very troublesome to manually delete characters and spaces in html, so we have php output to compress HTML page instances.

Can the HTML code output by the server be compressed?

The following is a function for compressing HTML:

 

The Code is as follows: Copy code

Function wpjam_minify_html ($ html ){

$ Search = array (
'/> [^ S] +/s', // Delete the space behind the tag
'/[^ S] + </s', // Delete the space before the tag
'/(S) +/s' // combine multiple spaces into one
);

$ Replace = array (
'> ',
'<',
'\ 1'
);

$ Html = preg_replace ($ search, $ replace, $ html );

Return $ html;
}

For a WordPress blog, copy the above function and the following code to the functions. php file of the current topic to compress the HTML code of the output page:

The Code is as follows: Copy code


If (! Is_admin ()){
Add_action ("wp_loaded", 'wp _ loaded_minify_html ');
Function wp_loaded_minify_html (){
Ob_start ('wpjam _ minify_html ');
}
}

Of course, the above practices have all been optimized by the website seo. We have a better way to combine the above page compression output and then compress the server gzip to open it, so that the page will be smaller, about how to enable gzip compression on the apacheapache Server

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.