File "File.php"

Full Path: /var/www/html/back/vendor/spatie/laravel-medialibrary/src/Support/File.php
File size: 738 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Spatie\MediaLibrary\Support;

use Symfony\Component\Mime\MimeTypes;

class File
{
    public static function getHumanReadableSize(int|float $sizeInBytes): string
    {
        $units = ['B', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'];

        // 0 === 0.00 return false so use double equals
        if ($sizeInBytes == 0) {
            return '0 '.$units[0];
        }

        $index = min(count($units) - 1, floor(log(abs($sizeInBytes), 1024)));

        return sprintf('%s %s', round(num: abs($sizeInBytes) / (1024 ** $index), precision: 2), $units[$index]);
    }

    public static function getMimeType(string $path): string
    {
        return (string) MimeTypes::getDefault()->guessMimeType($path);
    }
}