企业🤖AI Agent构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
### 通过模型ID获取模型名称 **位置:** Common\Common\function.php whz 2018-06-26 **参数:** * @param int $id * @return string **调用:** > PHP 调用: get_type_name ($type_id) > View 模版调用: {$vo['type_id']|get_type_name} **完整代码:** ~~~ /** * 通过模型ID获取模型名称 * whz 2018-05-08 * @param $id Int * @return string */ function get_type_name ($id) { if (empty($id)) { return ''; } $result = M('goods_type')->find($id); return $result['type_name']; } ~~~