Hi PHP community. I am a developer with few years experience in PHP and now
want to propose some addition to default "filesystem" extension. There's
money_format and number_format functions to format money and number values
in human-readable format, but there is not any "size_format" function that
does the same - reformat an integer that holds size in bytes in well-formed
string representing size in one of "big" units like MB or GB. So I can
implement function to do this with following interface:
> size_format($format, $bytes, $unit = null)
that will format size like printf with taking in accoun using unit and
multiplier (1k or 1024).
So, I wait for responses. Thanks for attention.