dounue6984 2014-04-16 16:10
浏览 46
已采纳

如何在laravel中的文件夹中保存多个图像?

I'm creating a server that communicates with an android application, the device sends the server 4 images which I saved to a folder.

With pure php would be something like

        $nombreImagen1 = $conteo++;
        $carpeta = "../Files/noticias/";
        $formato = str_replace("image/", ".", $_FILES['imagen1']['type']);               
        $destino = $carpeta.$nombreImagen1.$formato; // Nombre de la ruta + foto
        while (file_exists($destino)){
            $nombreImagen1++;             
            $destino = $carpeta.$nombreImagen1.$formato; // Nombre de la ruta + foto                
        }
        copy($_FILES['imagen1']['tmp_name'],$destino); // subir archivo a desde el origen hasta el destino 
  • 写回答

1条回答 默认 最新

  • dqeznd1697 2014-04-17 06:34
    关注

    You may use this:

    $files = Input::file();
    

    This will give you an array of files and you may use use foreach loop like this:

    $targetPath = 'set target path here';
    foreach ($files as $file) {
        $fileName = $file->getClientOriginalName();
        $file->move($targetPath, $fileName);
    }
    

    Read more on documentation.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 iOS绕地区网络检测
  • ¥15 python验证码滑块图像识别
  • ¥15 根据背景及设计要求撰写设计报告
  • ¥15 QT6颜色选择对话框显示不完整
  • ¥20 能提供一下思路或者代码吗
  • ¥15 用twincat控制!
  • ¥15 请问一下这个运行结果是怎么来的
  • ¥15 单通道放大电路的工作原理
  • ¥30 YOLO检测微调结果p为1
  • ¥15 DS18B20内部ADC模数转换器