Hello,
about what for a function (limit) are you talking with that code?
--
Best regards,
Stefan Frank
Looking for Monowall Adjustment?
http://M0n0WaLL.RootServices.Biz
Jonathan De Graeve schrieb:
> Can this function handle more then 2GB (or even more then 4GB)?
>
> function format_bytes($bytes) {
>
>> ---if ($bytes >= 1073741824) {
>> --->---return sprintf("%.2f GB", $bytes/1073741824);
>> ---} else if ($bytes >= 1048576) {
>> --->---return sprintf("%.2f MB", $bytes/1048576);
>> ---} else if ($bytes >= 1024) {
>> --->---return sprintf("%.0f KB", $bytes/1024);
>> ---} else {
>> --->---return sprintf("%d bytes", $bytes);
>> ---}
>>
> }
>
>
|