<?php
header('Content-type:text/html;charset=utf-8');
$base64_image_content = $_POST['imgBase64'];
//匹配出图片的格式
if (preg_match('/^(data:\s*image\/(\w+);base64,)/', $base64_image_content, $result)){
$type = $result[2];
$path = "upload/";
if(!file_exists($path))
{
PHP保存base64格式的图片内容为图片文件
最新推荐文章于 2022-05-24 15:32:52 发布