企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持知识库和私有化部署方案 广告
# 图片上传 上传单图 ``` public function index(){       if(values('files' , 'img')){              $upload = new \system\Upload(values('files' , 'img'));         dump($upload->upload());     }       return self::view('index'); } ``` 模板 ``` <form action="" method="post" enctype="multipart/form-data">   <input type="file" name="img" />   <input type="hidden" name="MAX_FILE_SIZE" value="2000000">   <input type="submit" value="提交"> </form> ```