추천: "PHP 비디오 튜토리얼"
프로젝트의 모듈 데이터는 PHP
크롤러에 의해 업데이트됩니다. 지역별 CDN 원본 서버(정적 리소스 서버)의 경우 서버 담당자가 업로드 API
PHP
爬虫进行更新,当检测到有新图片时需要上传到跨地区的CDN回源服务器(静态资源服务器),服务器负责人只提供一个上传API
1.将图片保存到本地再使用PHP CURL
+ new CURLFile($path)
上传(缺点: IO操作)
2.模拟拼接请求数据报文,将图片以二进制文件直接发送给上传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);
1.重温HTTP知识
2.通过postman
,Google Chrome
上传文件 查看发送的请求数据
3.拼接请求体
multipart/form-data; boundary={md5(microtime())}
Content-Type: application/octet-stream
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 중국어 웹사이트의 기타 관련 기사를 참조하세요!