php base64处理
Posted allenzhou
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php base64处理相关的知识,希望对你有一定的参考价值。
- function base64_upload($base64) {
- $base64_image = str_replace(‘ ‘, ‘+‘, $base64);
- //post的数据里面,加号会被替换为空格,需要重新替换回来,如果不是post的数据,则注释掉这一行
- if (preg_match(‘/^(data:\s*image\/(\w+);base64,)/‘, $base64_image, $result)){
- //匹配成功
- if($result[2] == ‘jpeg‘){
- $image_name = uniqid().‘.jpg‘;
- //纯粹是看jpeg不爽才替换的
- }else{
- $image_name = uniqid().‘.‘.$result[2];
- }
- $image_file = "./upload/test/{$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;
- }
- }
以上是关于php base64处理的主要内容,如果未能解决你的问题,请参考以下文章