这是我的查询Sphinxql查询
$query =SphinxQL::query()->select('*')
->from('table1')->match('title','hel',)->execute();
//title is column name
我需要一个文字hel
位于for eg mysql Like %string%
在上面检索与hel
字
我需要添加setmatchmode(SPH_MATCH_ANY)
,我需要添加Sphinxql
查询
答案 0 :(得分:3)
坦率地说,你最好不要使用匹配模式,即使通过SphinxQL技术上也是如此。
而只是使用仲裁语法重写查询....
->match('title',expr('"hel two there"/1'))
编辑澄清可能需要使用表达式来避免框架提供的自动转义。 (感谢评论!)