使用getRealPath
功能时遇到问题。
$file = Input::file('archivo');
$img = Image::make($file->getRealPath());
我遇到了这个例外:
NotReadableException in AbstractDecoder.php line 302. Image Not Readable.
我尝试使用$file->getRealPath()
函数打印dd()
的值,然后打印false
。我也尝试使用dd(Input::hasFile( 'archivo' ))
并返回给我true
。
我似乎无法找到答案,我几乎尝试过所有想法。
所以基本上我想知道两件事:
getRealPath
会让我误报而不是路径?Image::make()
,我会在取代getRealPath(),
并将路线发送为public_path()."routestring"
之前不断收到令人讨厌的例外情况。