Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
239 views
in Technique[技术] by (71.8m points)

php - How to upload multiple files using Lumen Multiple file upload

This is the code I tried so far. Could any one suggest how to alter this code to upload multiple files ?

  public function uploadFile(Request $request){
                $file = $request->file('image') ;
                $fileName = time().$request->file('image')->getClientOriginalName();

                $destinationPath = $request->input('path') ;
                return  $file->move($destinationPath,$fileName);
    }
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
 $file_ary = array();
        $file_count  = count($request->file('image') );
        $a=($request->file('image'));
        $finalArray=array();
         $file_count;
        for ($i=0; $i<$file_count; $i++) {
                $fileName = time().$a[$i]->getClientOriginalName();
                $destinationPath = $request->input('path') ;
               $finalArray[$i]['image']=$destinationPath.$fileName;
                  $a[$i]->move($destinationPath,$fileName);

        }
       return json_encode($finalArray);  // it will return the upload path

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...