2

来自萤火虫: http://i.imgur.com/OYMrIx2.jpg

如果我想使用 php-curl 模拟这个请求,我是否需要担心上传流中的请求标头?它到底是什么?

4

1 回答 1

2

当您上传文件时,在 HTTP 请求期间,您会看到标准的 HTTP 请求标头,然后您会得到如下信息:

-------------------------------18788734234
Content-Disposition: form-data; name="nonfile_field"

{input field here}
-------------------------------18788734234
Content-Disposition: form-data; name="myfile"; filename="somefile.gif"
Content-Type: image/gif

{uploaded file here}
-------------------------------18788734234--

Firebug 正在提取这些文件上传附带的额外请求标头,并为您提供有关它的更多信息。如果您使用 php-curl 进行标准文件上传,curl 将确保上传成功。

于 2013-05-14T16:45:52.910 回答