php base64轉二進位流的方法:1、建立一個PHP範例檔;2、透過「function base64_to_blob($base64Str){...}」方法將base64字串轉成二進位流即可。
本文操作環境:Windows7系統、PHP7.1版,DELL G3電腦。
php base64怎麼轉二進位流?
php base64字串轉二進位流
程式碼如下:
function base64_to_blob($base64Str){ if($index = strpos($base64Str,'base64,',0)){ $blobStr = substr($base64Str,$index+7); $typestr = substr($base64Str,0,$index); preg_match("/^data:(.*);$/",$typestr,$arr); return ['blob'=>base64_decode($blobStr),'type'=>$arr[1]]; } return false; } $data = base64_to_blob($base64Str); header('Location: '.$data['type']); echo $data['blob'];
strpos( ) 函數尋找字串在另一字串中第一次出現的位置。
substr() 函數傳回字串的一部分。
base64_decode — 對使用 MIME base64 編碼的資料進行解碼。
推薦學習:《PHP影片教學》
以上是php base64怎麼轉二進位流的詳細內容。更多資訊請關注PHP中文網其他相關文章!