gpt4 book ai didi

php - 使用 Laravel 4 遍历多个请求文件

转载 作者:搜寻专家 更新时间:2023-10-31 22:05:30 25 4
gpt4 key购买 nike

有没有办法在 Laravel 4 中遍历请求文件对象?我想做这样的事情:

foreach (Input::files() as $file) {
$filename = str_random(8) . '-' . $file->getClientOriginalName();
$uploadSuccess = $file->move($destinationPath, $filename);
// ...
}

我想使用 Input::方法而不是迭代 $_FILES 数组。谢谢

最佳答案

进入 Symfony 代码,您可能能够:

foreach (Request::instance()->files->all() as $file) {
$filename = str_random(8) . '-' . $file->getClientOriginalName();
$uploadSuccess = $file->move($destinationPath, $filename);
// ...
}

看看

Symfony\Component\HttpFoundation\FileBag

Symfony\Component\HttpFoundation\ParameterBag

为了更好地了解您可以用它们做什么。

关于php - 使用 Laravel 4 遍历多个请求文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19328090/

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