human_fsize_lib
Proto type
string human_fsize_lib (int byte [, int sub [, int unit [, int cunit ] ] ])Description
Arguments
Example
See also
Last updated
string human_fsize_lib (int byte [, int sub [, int unit [, int cunit ] ] ])Last updated
<?php
$a = human_fsize_lib (1024);
echo $a; # 1.00 KB
$a = human_fsize_lib (1024, 1);
echo $a; # 1.00 KB (1024 Bytes)
?>