上傳base64格式的圖片到服務器bash
/**bash64上傳圖片
* @param $base64 圖片的base64數據
* @param $path 保存路徑
*/
function base64_upload($base64, $path)
{
//POST過程當中(加號會被替換成空格)
$base64_image = str_replace(' ', '+', $base64); if (preg_match('/^(data:\s*image\/(\w+);base64,)/', $base64_image, $result)) { //全部圖片後綴改爲jpg if ($result[2] != 'jpg') { $image_name = uniqid() . '.jpg'; } $image_file = $path . $image_name; //保存圖片 if (file_put_contents($image_file, base64_decode(str_replace($result[1], '', $base64_image)))) { return $image_name; } else { return false; } } else { return false; } } $path = './Public/Upload/'; //調用方法 $result = base64_upload($base64_img, $path); //返回圖片的名稱 print_r($result);