最近一直在研究如何透過php向七牛雲儲存上傳base64編碼的圖片,求助百度,谷歌都沒有找到答案,無奈只能自己研究,元旦還在敲代碼也算是夠狠的,值得高興的是成功解決了問題,與大家分享我的程式碼:
<code><?php require_once 'vendor/autoload.php'; header('Access-Control-Allow-Origin:*'); use Qiniu\Auth; $bucket = '要上传的空间名'; $accessKey = '你的accessKey'; $secretKey = '你的secretKey'; $auth = new Auth($accessKey, $secretKey); $upToken = $auth->uploadToken($bucket, null, 3600);//获取上传所需的token function request_by_curl($remote_server,$post_string,$upToken) { $headers = array(); $headers[] = 'Content-Type:image/png'; $headers[] = 'Authorization:UpToken '.$upToken; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL,$remote_server); //curl_setopt($ch, CURLOPT_HEADER, 0); curl_setopt($ch, CURLOPT_HTTPHEADER ,$headers); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); //curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, $post_string); curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 10); curl_setopt($ch, CURLOPT_TIMEOUT, 30); $data = curl_exec($ch); curl_close($ch); return $data; } $str="base64编码的字符串"; echo "<pre class="brush:php;toolbar:false">"; echo request_by_curl('http://upload.qiniu.com/putb64/-1',$str,$upToken); echo "";
成功get。
以上就介紹了php向七牛上傳base64編碼的圖片,包括了方面的內容,希望對PHP教程有興趣的朋友有幫助。