标签: curl upload
我尝试运行以下curl语句
curl --form file[]=@s1.png --form file[]=@s2.png http://api.website.com/upload.php
但我的upload.php只收到s1.png。它没有得到s2.png。为什么呢?
答案 0 :(得分:0)
使用此黑客
curl --form "file1=@s1.png" --form "file2=@s2.png" http://api.website.com/upload.php