|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?立即注册
x
php实现把html压缩输出(页面一行代码)
函数代码:
- <?php
- $a=file_get_contents('html文件.html');
- function Compress_Html($string){
- return trim(preg_replace(array("/> *([^ ]*) *</","/<!--[^!]*-->/","'/\*[^*]*\*/'","/\r\n/","/\n/","/\t/",'/>[ ]+</',"/\s(?=\s)/"),array(">\\1<",'','','','','','><',''),$string));
- }
- echo compress_html($a);
复制代码
|
|