在Laravel 5.1中上传图像的功能是什么?

时间:2015-12-11 07:59:28

标签: laravel

我想将数据库上传到特定文件夹中。我学了很多教程,但没有找到具体的答案。所以请帮助我。我试过$request->file('image')->move($destinationPath, $fileName);,但它不起作用。

1 个答案:

答案 0 :(得分:0)

试试这个:

Input::file('photo')->move($destinationPath, $fileName);

Input::file('photo')->move($destinationPath);

下面, 照片将成为您的图片,您想保存。

$ destinationPath :您要存储上传图片的位置

$ fileName :您的图片文件名(可选)

您上传文件的表格应采用以下格式:

{!! Form::open(array('name'=>'create', 'method'=>'POST', 'files'=>true, 'url'=>'some/path')) !!}

{!! Form::close() !!}

看,如果有帮助的话。 (有关详细信息,请参阅here