Comments on: How to Convert File Size to Human Readable Format in PHP https://www.codexworld.com/how-to/convert-file-size-to-human-readable-format-php/ Web & Mobile App Development Company Thu, 09 May 2019 11:50:07 +0000 hourly 1 By: Pavel Zak https://www.codexworld.com/how-to/convert-file-size-to-human-readable-format-php/comment-page-1/#comment-85065 Thu, 09 May 2019 11:50:07 +0000 https://www.codexworld.com/?post_type=how-to-guides&p=3445#comment-85065 Hi,

thanks for the example. I’ve noticed that strlen() is not a good method for determining factor because big numbers get converted to float automatically in PHPP. I suggest replacing the line with:

factor = floor(log($bytes, 1024));

Other than that, it works fine.

Cheers, Pavel

]]>