ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
### 通过规格或属性ID获取名称 **位置:** Common\Common\function.php whz 2018-06-26 **参数:** * @param int $id * @return string **调用:** > PHP 调用: get_attr_name ($attr_id) > View 模版调用: {$vo['attr_id']|get_attr_name} **完整代码:** ~~~ /** * 通过规格或属性ID获取名称 * whz 2018-05-10 * @param $id Int * @return string */ function get_attr_name ($id) { if (empty($id)) { return ''; } $result = M('goods_attribute')->find($id); return $result['attr_name']; } ~~~