PHP压缩HTML/JS代码
PHP #压缩2012-04-30 09:08
以下代码可以压缩HTML和JS,但如果JS没有用分号结尾的会有问题。
$content = str_replace(array('','',"\r\n\r\n","\r\n","\n"," ","\t"),'',$content);
PHP str_replace() 函数 http://yige.org/php/func_string_str_replace.php
只压缩HTML不压缩JS
$content = preg_replace("~>\s+\r~", ">", preg_replace("~>\s+\n~", ">", $content)); $content = preg_replace("~>\s+<~", "><", $content);
相关文章
- php在iis下自动输出Content-Length的方法 2012/04/30
- Linux下给php安装memcache扩展 2012/04/29
- PHP防止伪造跨站请求的小招式 2012/04/28
- php 性能测试工具 xhprof 使用教程 2012/04/28
- 通过刷新PHP缓冲区来加速网站 2012/04/28
- 教你开发PHP计算器 2012/04/28
- PHP中htmlentities/htmlspecialchars区别 2012/04/28
- wordpress反垃圾评论插件 2012/04/28
- PhpMyAdmin出现空白页或无法载入mysql扩展 2012/04/28
- 取消PHP页面Warning和Notice级别的报错 2012/04/28