如果字符串结束,Addfieldtofilter会失败?标记

时间:2017-05-25 03:32:41

标签: php magento

Mage :: getModel(" core / translate") - > getCollection() - > addFieldToFilter(" string","你好吗?&#34 );

1 个答案:

答案 0 :(得分:0)

方法getCollection()未在核心翻译模型中定义,如果您只有问号(?)的问题,您可以尝试以下建议

问题是在添加字段时过滤Zend_DbAdapter quoteInto删除?我想建议sql wildcard _ for ?

请尝试以下代码。

Mage:: getModel("core/translate")->getCollection()->addFieldToFilter("string", array('like'=>'How are you_'));

您可以在Magento loadByAttribute fails on question marks

上查看更多详情