« on: January 15, 2013, 01:42:36 PM »
 |
|
 |
 |
oke sobat moreshare forum, pembelajaran kali ini adalah kita akan melakukan compressing pada file coding HTML dan output akan menghasilkan tampilan rapat sourcode untuk meningkatkan pagespeed google insights. proses ini akan dilakukan dalam PHP. silakan simak contoh berikut: Original HTML sourcecode<html> <head> </head> <body> <div> </div> </body> </html>
Compressing Code<?php //add this START before HTML code ob_start('compress_html'); ?> <html> <head> </head> <body> <div> </div> </body> </html> <?php //add this END after HTML code ob_end_flush(); function compress_html($compress) { $i = array('/\s+/','/>\s</'); $ii = array(' ','><'); return preg_replace($i, $ii, $compress); } ?>
OUTPUT clear after compressing<html><head></head><body><div></div></body></html>
moga bermanfaat

|
|
 |
|
 |