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']; } ~~~