转义尖括号时遇到很多麻烦..
$embeds = preg_replace(<!--nextpage-->, '', $embeds, 1);
确实发现strip_tags()假设要做的伎俩,但必须搞砸了。
删除&lt;的最佳方法是什么? ! - 下一页 - &GT;
答案 0 :(得分:0)
你想剥离或逃脱天使托架吗?
如果HTML有效,则剥离与strip_tags()
一起使用。示例:$embeds = strip_tags($embeds);
可以使用html_special_chars()
进行转义。示例:$embeds = htmlspecialchars($embeds, ENT_NOQUOTES);
您也可以尝试以下方法:
preg_replace('/<!--.+-->/U', '', $embeds)