关于thinkphp5.1 报 “think\image” not found 问题解决

司徒宇
2023-12-01

thinkphp5.1框架内报错 Class ‘think\Image’ not found解决方法教程

今天thinkphp打开调试模式,突然发现报错 Class ‘think\Image’ not found 是上传图片出问题了,奇怪之前都好好的,为什么会出现这种情况。
经过反复研究发现应该是框架的依赖自动注入出错,引用方式如下 \think\image::open($imgSrc);
解决方法如下:
把 ./vendor/topthink/think-image/src下的文件(包括image.php和image文件夹)
移动到 ./thinkphp/library/think 目录下,再回到后台,就大功告成了。

 类似资料: