码迷,mamicode.com
首页 > Web开发 > 详细

计算上传base64文件大小

时间:2020-04-28 09:54:28      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:ace   ber   function   文件   div   mat   res   大小   bsp   

 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 }

 

计算上传base64文件大小

标签:ace   ber   function   文件   div   mat   res   大小   bsp   

原文地址:https://www.cnblogs.com/zjj1990/p/12791839.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!