我只想知道如何在前端的octobercms上传多个文件 没有教程,
我正在使用
<input name="posting-image" type="file" multiple="multiple" />
然后只获得最后上传的图片
$posting->posting->image=Input::file('posting-image');
$posting->save();
如何检索所有图像?
答案 0 :(得分:3)
如果你想要多张图片,你需要使用array[] in name of image/file
因此您需要将输入写为
<input name="posting-image[]" type="file" multiple="multiple" />
<!-- you need to add this ^ array brackets after name -->
posting-image[]
所以现在这可以容纳多个图像而不是最后一个图像。
现在你可以使用它来获取php端的多个图像
$posting->posting->image= Input::file('posting-image');
// this will return you array of uploaded files
$posting->save();
如果有任何问题请发表评论。