前言
專案中模組資料由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);
解決思路
- 重溫HTTP知識
- 通過
postman
,Google Chrome
上傳檔案 檢視傳送的請求資料 - 拼接請求體
- set Header
multipart/form-data; boundary={md5(microtime())}
- set Body Block
Content-Type: application/octet-stream
- set Header
本作品採用《CC 協議》,轉載必須註明作者和本文連結