PHP 8.5.0 Alpha 1 available for testing

Voting

: min(five, four)?
(Example: nine)

The Note You're Voting On

Anonymous
5 months ago
#Human File Size
function human_filesize($bytes, $decimals = 2) {
$sz = ["B", "KB", "MB", "GB", "TB", "PB"];
if($bytes < 1024) $decimals = 0;
$factor = floor((strlen($bytes) - 1) / 3);
return sprintf("%.{$decimals}f", $bytes / pow(1024, $factor)) . @$sz[$factor];
}

<< Back to user notes page

To Top