概述关于PHP CURL上传二进制流图片
推荐:《PHP视频教程》
前言
项目中模块数据由PHP
爬虫进行更新,当检测到有新图片时需要上传到跨地区的CDN回源服务器(静态资源服务器),服务器负责人只提供一个上传API
解决方法
1.将图片保存到本地再使用PHP CURL
+ new \\CURLfile($path)
上传(缺点: IO *** 作)
2.模拟拼接请求数据报文,将图片以二进制文件直接发送给上传API
√
composer require ar414/curl-upload-binary-image
<?PHPrequire_once '../vendor/autoload.PHP';use Ar414\\UploadBinaryImage;$url = 'http://0.4.1.4:414/upload?path=/test/';$fIElds = [];$fIEldname = 'file';$filename = 'ar414.png';$fileBody = file_get_contents('https://github.com/ar414-com/ar414-com/raw/master/assets/ar414.png');$ret = UploadBinaryImage::upload($url,$fIElds,$fIEldname,$filename,$fileBody);var_dump($ret);
解决思路
1.重温http知识
2.通过postman
,Google Chrome
上传文件 查看发送的请求数据
3.拼接请求体
set header multipart/form-data; boundary={md5(microtime())}
set Body Block Content-Type: application/octet-stream
总结
以上是内存溢出为你收集整理的关于PHP CURL上传二进制流图片全部内容,希望文章能够帮你解决关于PHP CURL上传二进制流图片所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
© 版权声明
THE END
请登录后查看评论内容