ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、视频、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
### get_warehouse 通过ID获取仓库名称 **位置:** Common\Common\function.php **参数:** @param $id Int **调用:** > PHP 调用: get_warehouse ($id) > View 模版调用: {$vo['id']|get_warehouse} **完整代码:** ~~~ /** * 通过ID获取仓库名称 * jig 2017-09-28 * @param $id Int * @return string */ function get_warehouse ($id) { if (empty($id)) { return ''; } $result = M('storage')->find($id); return $result['storage_name']; } ~~~