php – 文件上传请求中的Content-Transfer-Encoding

前端之家收集整理的这篇文章主要介绍了php – 文件上传请求中的Content-Transfer-Encoding前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试使用 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
看到

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

原文链接:https://www.f2er.com/php/135034.html

猜你在找的PHP相关文章