来自萤火虫:
如果我想使用 php-curl 模拟这个请求,我是否需要担心上传流中的请求标头?它到底是什么?
当您上传文件时,在 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 将确保上传成功。