MySQL 相当于用于删除 HTML 标签的 PHP strip_tags
MySQL 查询:
SELECT ExtractValue(field, '//text()') FROM table;
解释:
ExtractValue() 函数从 XML 文档中提取文本内容,有效地删除任何标记。 '//text()' 参数选择 XML 文档中的所有文本节点,它们对应于 HTML 标记中的内容。
示例:
考虑以下数据库:
| id | title | |---|---| | 1 | This is an example <h1>title</h1> | | 2 | Another example <a href="#">link</a> |
查询结果:
| title | |---|---| | This is an example title | | Another example link |
参考:
https://dev.mysql.com/doc/refman/5.5/en/xml-functions。 html
以上是如何高效去除MySQL数据中的HTML标签?的详细内容。更多信息请关注PHP中文网其他相关文章!