考虑以下三个“干草堆”字符串:
一种) foo bar
b) welcome to foo bar industries
C) foo barer
现在我的“针”:
foo bar
(呵呵)
我希望我的过滤器使我的针头与干草堆字符串a和b匹配,但不与c匹配。我试过了:
$collection->addAttributeToFilter('name', array('like' => '%'.$needle.'%'));
但以上与c匹配。
我也尝试过:
$collection->addAttributeToFilter('name', array('like' => '% '.$needle.' %')); // Note the spaces
以上仅与b匹配。
任何帮助深表感谢。