1

我尝试运行以下 curl 语句

curl --form file[]=@s1.png --form file[]=@s2.png http://api.website.com/upload.php

但我的upload.php 只收到s1.png。它没有得到 s2.png。为什么?

4

1 回答 1

0

使用这个技巧

curl --form "file1=@s1.png" --form "file2=@s2.png" http://api.website.com/upload.php
于 2013-03-15T14:41:50.947 回答