>  기사  >  백엔드 개발  >  PHP CURL 업로드 바이너리 스트림 이미지 정보

PHP CURL 업로드 바이너리 스트림 이미지 정보

藏色散人
藏色散人앞으로
2020-12-25 15:51:375317검색

추천: "PHP 비디오 튜토리얼"

PHP CURL 上传二进制流图片

Foreword

프로젝트의 모듈 데이터는 PHP 크롤러에 의해 업데이트됩니다. 지역별 CDN 원본 서버(정적 리소스 서버)의 경우 서버 담당자가 업로드 APIPHP爬虫进行更新,当检测到有新图片时需要上传到跨地区的CDN回源服务器(静态资源服务器),服务器负责人只提供一个上传API

解决方法

1.将图片保存到本地再使用PHP CURL + new CURLFile($path)上传(缺点: IO操作)

2.模拟拼接请求数据报文,将图片以二进制文件直接发送给上传API

composer require ar414/curl-upload-binary-image
<?php

require_once &#39;../vendor/autoload.php&#39;;

use Ar414\UploadBinaryImage;

$url = &#39;http://0.4.1.4:414/upload?path=/test/&#39;;
$fields = [];
$fieldName = &#39;file&#39;;
$fileName = &#39;ar414.png&#39;;

$fileBody = file_get_contents(&#39;https://github.com/ar414-com/ar414-com/raw/master/assets/ar414.png&#39;);

$ret = UploadBinaryImage::upload($url,$fields,$fieldName,$fileName,$fileBody);
var_dump($ret);

解决思路

1.重温HTTP知识

2.通过postmanGoogle Chrome 上传文件 查看发送的请求数据

3.拼接请求体

  • set Header multipart/form-data; boundary={md5(microtime())}
  • set Body Block Content-Type: application/octet-stream
🎜Solution🎜🎜1만 제공합니다. . 이미지를 로컬에 저장한 후 PHP CURL + new CURLFile($path) 업로드를 사용합니다(단점: IO 작업) 🎜🎜🎜2. 이미지를 바이너리 파일 /code>로 Upload API√🎜🎜🎜rrreeerrreee🎜솔루션 아이디어🎜🎜1. 지식🎜🎜2. <code>postman을 통해 파일을 업로드하여 전송된 요청 데이터를 확인하세요🎜🎜3. 요청 본문을 연결하세요🎜
  • 헤더를 설정하세요. multipart/form-data; 경계={md5(microtime()) }🎜
  • 본문 블록 설정 Content-Type: application/octet-stream🎜🎜

위 내용은 PHP CURL 업로드 바이너리 스트림 이미지 정보의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
이 기사는 learnku.com에서 복제됩니다. 침해가 있는 경우 admin@php.cn으로 문의하시기 바랍니다. 삭제