使用Sphinxsearch,我如何在一个范围内搜索数字(用两个HTML输入选择: min。和最大值)?
发布于 2012-08-16 18:23:11
将数字设置为http://sphinxsearch.com/docs/current.html#attributes属性
然后使用setFilterRange
$cl->setFilterRange('price',intval($_GET['min']),intval($_GET['max']));https://stackoverflow.com/questions/11983650
复制相似问题