Last active
May 9, 2017 02:38
-
-
Save greatb/1721252 to your computer and use it in GitHub Desktop.
Html Minifiy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function html_minifiy($str) | |
{ | |
$str = str_replace("\t", " ", $str); | |
$str = str_replace(" ", " ", $str); | |
$str = str_replace(" ", " ", $str); | |
$str = str_replace(" ", " ", $str); | |
$str = str_replace(" ", " ", $str); | |
$str = str_replace("> <", "><", $str); | |
$str = str_replace("\n", "", $str); | |
$str = str_replace(" }", "}", $str); | |
$str = str_replace("{ ", "{", $str); | |
$str = str_replace("> <", "><", $str); | |
return $str; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
bueno me ayuda a recordar. :D php.net