我正在尝试使用
XMLHTTPRequest上传文件,并发送此标头:
Content-Type:multipart/form-data,boundary=xxxxxxxxx --xxxxxxxxx Content-Disposition: form-data; name='uploadfile'; filename='123_logo.jpg' Content-Transfer-Encoding: base64 Content-Type: image/jpeg /*base64data*/
但在服务器端PHP忽略标题“Content-Transfer-Encoding:base64”
并将base64未解码的数据直接写入文件!
有没有办法解决它?
附:使用base64发送数据非常重要
事实上,HTTP中没有Content-transfer-encoding
看到
原文链接:https://www.f2er.com/php/135034.html看到
http://www.ietf.org/rfc/rfc2616.txt
19.4.5 No Content-Transfer-Encoding
HTTP does not use the
Content-Transfer-Encoding (CTE) field
of RFC 2045.
但您可以像http://php.net/manual/en/function.base64-decode.php一样使用base64_decode