ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
### 通过分类的ID得到分类信息 **位置:** Common\Lib\GoodsBaseLib.class.php **参数:** * @param $cat_id int 分类ID * @return $cat_info array 分类信息 **调用:** * $goodsbase = new GoodsBaseLib(); * $cat_info = $goodsbase->getCatIdInfo($cat_id); **完整代码:** ~~~ /** * 通过分类的ID得到分类信息 * whz 2018-05-17 * @param $cat_id int 分类ID * @return $cat_info array 分类信息 */ public function getCatIdInfo($cat_id) { $cat_info = M('goods_category') ->where(array('id'=>$cat_id, 'is_delete'=>0)) ->find(); return $cat_info; } ~~~