3v4l.org

run code in 300+ PHP versions simultaneously
<?php ini_set("precision", 52); function formatBytes($bytes, $precision = 2) { $units = array('B', 'KB', 'MB', 'GB', 'TB'); $bytes = max($bytes, 0); $pow = floor(($bytes ? log($bytes) : 0) / log(1024)); $pow = min($pow, count($units) - 1); $bytes /= pow(1024, $pow); return round($bytes, $precision) . ' ' . $units[$pow]; } echo formatBytes(1317474, 1);

preferences:
30.94 ms | 402 KiB | 5 Q