例
<h1>title of article</h1><div class="body">The content goes here......</div> outputs title of articleThe content goes here......
如果你看到输出标题和正文被加入(articleThe).如果标签被删除,我想插入一个空格.这可能吗.
我感谢任何帮助.
谢谢.
$html = preg_replace('/(<\/[^>]+?>)(<[^>\/][^>]*?>)/','$1 $2',$html); $html = strip_tags($html);