我正在尝试制作一个允许上传文件并将其存储在应用程序的 public/upload 文件夹中的表单。
我的表格是:
<form action="/image/save" method="post">
<input name="image" type="file" />
<input type="submit" value="Save"/>
</form>
和控制器:
public function save(){
$file = Input::file('image');
$destinationPath = 'upload/';
$filename = $file->getClientOriginalName();
Input::file('image')->move($destinationPath, $filename);
但是当我运行它时,出现以下错误:Call to a member function getClientOriginalName()
on a non-object