我在我的网站上使用tinyMCE作为我的文本编辑器,我想在将文本保存到我的数据库之前重新格式化文本(将’标签更改为'然后更改为').我找不到使用tinyMCe这样做的简单方法,并使用htmlentities()更改包括<>在内的所有内容.有任何想法吗?
您可以strip_tags($str, $allowed_tags)像下面这样的用户:
strip_tags($str, $allowed_tags)
$txt = strip_tags($txt, '');
');