关于PHP CURL上传二进制流图片
时间:2022-02-11 13:30
推荐:《PHP视频教程》 项目中模块数据由 1.将图片保存到本地再使用 2.模拟拼接请求数据报文,将图片以二进制文件直接发送给 1.重温HTTP知识 2.通过 3.拼接请求体 以上就是关于PHP CURL上传二进制流图片的详细内容,更多请关注gxlsystem其它相关文章!前言
PHP
爬虫进行更新,当检测到有新图片时需要上传到跨地区的CDN回源服务器(静态资源服务器),服务器负责人只提供一个上传API
解决方法
PHP CURL
+ new \CURLFile($path)
上传(缺点: IO操作)上传API
√composer require ar414/curl-upload-binary-image
<?php
require_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);
解决思路
postman
,Google Chrome
上传文件 查看发送的请求数据multipart/form-data; boundary={md5(microtime())}
Content-Type: application/octet-stream