Home  >  Q&A  >  body text

laravel accept multiple files submitted by form

Code:
html:
<input type="file" name="img" multiple="multiple" />
php:
$file=$request-> file('img');

After selecting multiple pictures through input in the web page, select the file name to accept in the background, but only one file can be accepted. Why is this?
I hope God can give me some advice, urgent! ! ! ! !

世界只因有你世界只因有你2702 days ago777

reply all(2)I'll reply

  • PHP中文网

    PHP中文网2017-05-27 17:45:30

    html :

        <input type="file" name="img[]" multiple="multiple" />
        

    php :

        $file = $_FILES['img'];

    reply
    0
  • 世界只因有你

    世界只因有你2017-05-27 17:45:30

    <input type="file" name="img[]" multiple="multiple" />
    
    多个文件的话 name='' 必须加 []数组形式

    reply
    0
  • Cancelreply