thinkphp在6.0使用composer安装,在vendor 中会缺少一个库 这个库就是
think-filesystem
此时你按照官方文档中提供的方法 上传会出现报错
报错如下:
这时候 你就需要重新加载这个库
具体方法如下 找到你项目中 composer.json这个文件
在文件中加入一行代码
"topthink/think-filesystem":"^1.0"
代码位置
然后删除你项目中的 composer.lock文件。
在终端进入你项目的根目录 执行
composer install
在终端能看到箭头指向的文件 就可以了
来源地址:https://blog.csdn.net/weixin_45285275/article/details/127771312