在我的本地开发中,我使用下面显示的代码,效果很好,
但是当我将网站上传到我的共享主机时,除了我的文件上传之外,一切都很好。->getRealPath()
当dd();
我得到这条路径
时,我已经确定问题涉及
:/data/sites/web/christophvhbe/tmp
我的主机上不存在。但我发现临时图像存储在我的主机上,tmp/
位于此处: http: //gyazo.com/e0199718324119109a4ff66321414e12。
如何将->getRealPath()
值更改为正确的值?
$fileName = time() . '-' . $request->file('foto')->getClientOriginalName();
$product->foto = $fileName;
$product->save();
$imagePath = '/images/producten/'. $fileName;
$image = Image::make($request->file('foto')->getRealPath())->fit(300)->save($imagePath);
我正在使用该Image/intervention
包上传和存储图像。