PHP实现字节数Byte转换为KB、MB、GB、TB


function getFilesize($num) {
        $p = 0;
        $format = 'bytes';
        if( $num > 0 && $num < 1024 ) {
          $p = 0;
          return number_format($num) . ' ' . $format;
        }
        if( $num >= 1024 && $num < pow(1024, 2) ){
          $p = 1;
          $format = 'KB';
       }
       if ( $num >= pow(1024, 2) && $num < pow(1024, 3) ) {
         $p = 2;
         $format = 'MB';
       }
       if ( $num >= pow(1024, 3) && $num < pow(1024, 4) ) {
         $p = 3;
         $format = 'GB';
       }
       if ( $num >= pow(1024, 4) && $num < pow(1024, 5) ) {
         $p = 3;
         $format = 'TB';
       }
       $num /= pow(1024, $p);
       return number_format($num, 3) . ' ' . $format;
}

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM