标签: php html function tags
是否可以从字符串中删除除标签之外的所有内容?
E.g.: "<br>Hello World!</br>" --> "<br></br>"
是否有内置功能?
答案 0 :(得分:0)
是。是的。
preg_match_all('/<*?>(.*?)<\/*?>/', $html, $result); echo implode("", $result);