计算上传base64文件大小
Posted zjj1990
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了计算上传base64文件大小相关的知识,希望对你有一定的参考价值。
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文件大小的主要内容,如果未能解决你的问题,请参考以下文章