PHP Salt


A little dash of PHP... my collection of php functions

Version: 2.33.2
Last Build: December 29, 2023 20:28pm (PST)

Main Menu

Home

Get PHP Salt


The Functions

array
db
file
graph
html
mail
math
misc
mobile
script
string
system
time
web
psHumanSize()
Bytes in Human Size


Description:

Returns a string representing bytes in human size



Usage:

$str = psHumanSize(323423);



Example:


$str = psHumanSize(323423); // "returns 315.84 KB"





Code:

function psHumanSize($size)
{
$res = sprintf('%d B', $size);
if ($size > 1023) {$size = $size / 1024; $res = sprintf('%.2f KB', $size); }
if ($size > 1023) {$size = $size / 1024; $res = sprintf('%.2f MB', $size); }
if ($size > 1023) {$size = $size / 1024; $res = sprintf('%.2f GB', $size); }
if ($size > 1023) {$size = $size / 1024; $res = sprintf('%.2f TB', $size); }
return $res;
}

Changlelog:


See Also

And a shot out to:

PHP - php.net
Fedora Server - getfedora.com
Shameless ads to pay for site