Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有数千种产品,其中包括 longDescription 字段中的以下内容:
<ul> <li>Some content</li> <li><a href="link"... </li> </ul> Several trailing line breaks...
我想知道是否有一个安全有效的 SQL 查询可以删除<li>'s其中的链接以及尾随换行符/空字符?
<li>'s
最好的方法可能是将前端模型添加到属性中。创建一个模型来扩展 Mage_Eav_Model_Entity_Attribute_Frontend_Abstract和删除函数中的 HTML,getValue()例如使用strip_tags().
Mage_Eav_Model_Entity_Attribute_Frontend_Abstract
getValue()
strip_tags()