siestacat/bytes-to-human-readable

1.0.1 2023-11-30 20:01 UTC

This package is auto-updated.

Last update: 2024-04-30 00:40:11 UTC


README

Install:

composer require siestacat/bytes-to-human-readable

Usage:

use Siestacat\BytesToHumanReadable\BytesToHumanReadable;

var_dump(BytesToHumanReadable::convert(1104)); //1.10 kB
var_dump(BytesToHumanReadable::convert(67229, true, 1)); //65.6 KiB

Tests:

git clone https://github.com/SiestaCat/php-bytes-to-human-readable.git
cd php-bytes-to-human-readable
composer install
composer run-script test

Credits

https://stackoverflow.com/a/2510455