# 关于
上传操作类,实现upload方法
# 示例
~~~html
$uploader = WechatIndexCommonClass::get('Upload');
~~~
#### upload:
~~~html
参数:
$path_name 上传路径 模型名称/模块名称 (如 addons/demo 指 addons模型下的demo模块)
$type 上传文件类型 image / file
调用:
$uploader->upload($path_name,$type);
返回示例:
成功:
$url = 'uploads/image/addons/demo/20190217/1bc21357ffc5989211992b61ee727469.jpeg'
失败:
返回上传错误信息
~~~