gpt4 book ai didi

octobercms - octobercms 中的多个文件上传

转载 作者:行者123 更新时间:2023-12-02 20:26:09 25 4
gpt4 key购买 nike

我只是想知道如何在前端的octobercms中上传多个文件没有教程,

我正在使用

<input name="posting-image" type="file" multiple="multiple" />

然后只得到最后上传的图像

$posting->posting->image=Input::file('posting-image');
$posting->save();

如何检索所有图像?

最佳答案

嘿,如果您想要多个图像,您需要在图像/文件名称中使用array[]

所以你需要将输入写为

<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();

如有问题请评论。

关于octobercms - octobercms 中的多个文件上传,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49865937/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com