Advertisement
vrtc

Untitled

Jul 9th, 2020
1,011
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.71 KB | None | 0 0
  1.     /**
  2.      * Конвертор байт в KB, MB, GB или TB.
  3.      * @param int $bytes Байты
  4.      * @param string $unit Еденица измерения: B, KB, MB, GB или TB, или false, если не надо форматировать измерение
  5.      * @param int $precision точность
  6.      * @return float
  7.      */
  8.     public static function formatBytes($bytes, $unit = 'KB', $precision = 2)
  9.     {
  10.  
  11.         if ($unit === false) {
  12.             return $bytes;
  13.         }
  14.         $unit = strtoupper($unit);
  15.         $unitPow = array('B' => 0, 'KB' => 1, 'MB' => 2, 'GB' => 3, 'TB' => 4);
  16.         $bytes /= pow(1024, $unitPow[$unit]);
  17.         return round($bytes, $precision);
  18.     }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement