次の3つの「haystack」文字列を考えてください。
a) 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とのみ一致します。
どんな助けも大歓迎です。