计算上传base64文件大小
2021-03-15 17:35
标签:ace ber function 文件 div mat res 大小 bsp 计算上传base64文件大小 标签:ace ber function 文件 div mat res 大小 bsp 原文地址:https://www.cnblogs.com/zjj1990/p/12791839.html 1 // 计算文件大小
2 function file_size($base64)
3 {
4 $base64_image = str_replace(‘ ‘, ‘+‘, $base64);
5 if (preg_match(‘/^(data:\s*audio\/(\w+);base64,)/‘, $base64_image, $result)){
6 $base_img=str_replace($result[1], ‘‘, $base64_image);
7 $base_img=str_replace(‘=‘,‘‘,$base_img);
8 $img_len = strlen($base_img);
9 $file_size = intval($img_len - ($img_len/8)*2);
10 $file_size = number_format(($file_size/1024/1024),2);
11
12
13
14 }
15 }