带数组参数的PHP cURL发布文件-无键

时间:2019-02-27 15:07:15

标签: php arrays file curl

我需要通过PHP cURL发送POST请求。它需要同时包含文件和数组参数。 raw curl命令应如下所示:

Localizable.strings

不幸的是list_item []参数不能具有键(即list_item [0],list_item [1]等),否则服务器会引发错误。

curl "https://the.url.com"                                                                                                            
  -F file="@/path/to/file.xml"
  -F 'list_item[]=foo'
  -F 'list_item[]=bar'

这肯定产生了错误的curl命令,因为它也被拒绝了。

有人可以帮忙吗?

0 个答案:

没有答案