当前位置:Gxlcms > PHP教程 > sphinx-php看不懂。。。求指导

sphinx-php看不懂。。。求指导

时间:2021-07-01 10:21:17 帮助过:26人阅读

phpsphinx

$entityGoodsInfo = array();
if (Utils::isEmptyStr($goodsId['0'])) {
$categoryGoodsList['goodsList'] = array ();
} else {
$filterExp = new Filter();
$filterExp->setQueryFilter(Filter :: $in, "goods_id", $goodsId);
//$filterExp->setQueryFilter(Filter :: $order_by, $nameSort, $orderType[0]);
$categoryGoodsList = $bizservice->getGoodsListByFilter($depotId, $categoryInfo->cat_tablename, $categoryId, $color, $material, $goodsSkuValue, implode("-", $patternValue), $price, $filterExp, $orderNames, $orderType, $curpage, $pageSize);
foreach ($goodsId as $goods_id_value) {
foreach ($categoryGoodsList['goodsList'] as $key => $value) {
if ($value->goods_id == $goods_id_value) {
array_push($entityGoodsInfo, $value);
break;
}
}
}
}

人气教程排行