![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/rentpix.corals.io/vendor/spatie/laravel-medialibrary/src/Support/ |
<?php namespace Spatie\MediaLibrary\Support; use Symfony\Component\Mime\MimeTypes; class File { public static function getHumanReadableSize(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]; } public static function getMimeType(string $path): string { return (string) MimeTypes::getDefault()->guessMimeType($path); } }