1. 程式人生 > >php中圖片以字節流的形式直接發送七牛

php中圖片以字節流的形式直接發送七牛

qiniu type qrc contents 處理 沒有 調用 直接 test

PHP 是弱類型語言,沒有bytes[]類型, 而 file_get_contents 獲取到的是 string,不是byte[],file_get_contents()函數得到的不是流數據,而是string類型,轉換成 base64使用二進制輸出即可

$content = file_get_contents("file:///Users//s.jpg");
$content = base64_encode($content);然後進行網絡傳輸,對方就能處理數據。

七牛中的直接調用api即可實現:

$key = $invite.‘.png‘;
header(‘Content-Type: ‘.$qrCode->getContentType()); //資源類型

$content = $qrCode->writeString(); //數據流形式傳遞
Yii::$app->Qiniu->manageQiniu($key,$content,‘‘,‘uploadbinary‘);

php中圖片以字節流的形式直接發送七牛