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中文網其他相關文章!