Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - jongerard

Pages: [1]
1
For PHP versions 4 through 4.2.0, if you replace:
Code: [Select]
$file_size = intval($file_size);with:
Code: [Select]
$file_size = floatval($file_size);it will give you the correct size.
Chicago Show
I have not tested with all versions of PHP but you could also replace:
Code: [Select]
$file_size = intval($file_size);with a float typecast:
Code: [Select]
$file_size = (float)($file_size);and get the correct result.
I have tested both methods and they both return the proper size.
Excellent and thank you for all of your effort!

Pages: [1]