= 1000000000000) { $num = round($num/1099511627776)/10; $unit = 'TB'; } elseif ($num >= 1000000000) { $num = round($num/107374182)/10; $unit = 'GB'; } elseif ($num >= 1000000) { $num = round($num/104857)/10; $unit = 'MB'; } elseif ($num >= 1000) { $num = round($num/102)/10; $unit = 'KB'; } else { $unit = 'Bytes'; } return number_format($num, 1).' '.$unit; } } /* End of file number_helper.php */ /* Location: ./system/helpers/number_helper.php */