首頁 >後端開發 >php教程 > 呀,关于html标签内的换行解决···

呀,关于html标签内的换行解决···

WBOY
WBOY原創
2016-06-13 13:43:511196瀏覽

求助呀,关于html标签内的换行解决···

PHP code
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--><?php $html = '
</tbody>

<input type="hidden" name="prt" value="1"> <input type="image" src="/images/add_t_s_c.png">

';

$content=preg_replace("xxx","",$html);
echo $content;
?> 


像上面的例子,标签里出现了换行,如何通过正则表达式去把换行给去掉呢?
我写了很久,都没办法去掉换行。求高人帮忙~~~~~

------解决方案--------------------
PHP code
$html = '


<input type="hidden" name="prt" value="1"> <input type="image" src="/images/add_t_s_c.png">

';

$content=preg_replace("/([^>])[\r\n]+/x","$1",$html);
echo $content; <div class="clear">
                 
              
              
        
            </div>
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn