for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Spatie\DbSnapshots\Helpers;
class Format
{
public static function humanReadableSize(int $sizeInBytes): string
$units = ['B', 'KB', 'MB', 'GB', 'TB'];
if ($sizeInBytes === 0) {
return '0 '.$units[1];
}
for ($i = 0; $sizeInBytes > 1024; $i++) {
$sizeInBytes /= 1024;
return round($sizeInBytes, 2).' '.$units[$i];