在我的本地开发中,我使用下面显示的代码,它完美无缺,
但当我将网站上传到我的共享主机时,一切正常,除了我的文件上传.我已经确定问题涉及到了
– > getRealPath(),当我dd();我得到这条道路:
/数据/网站/网页/ christophvhbe / tmp目录
如何将 – > 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);
我正在使用图像/干预包来上传和存储图像.