使用MySQL中的返回键条目查找并替换<p> </p>

时间:2013-08-19 16:54:31

标签: mysql phpmyadmin

我刚刚实现了nl2br(htmlspecialchars(...来显示用户输入的MySQL数据。在我了解nl2br之前,各种各样的帖子都充满了

标签。有没有快速浏览MySQL的方法(我使用php myAdmin)并将<p>替换为nl2br选择的返回键条目?其中一列中只有

标签。感谢

编辑:一个例子

...d the wood on the front car is cracked - it has stood the test of time very well. 
<p>
For such an ancient coaster, it affords a surprisingly good ride – this relic can still deliver..

因此应删除<p>并替换为空行

1 个答案:

答案 0 :(得分:3)

根据您的示例,<p>元素不是必需的。它们只能replaced \n

UPDATE yourTable SET theColumn = REPLACE(theColumn, '<p>', '\n')