Файл: vendor/laravel/framework/src/Illuminate/Http/Testing/MimeType.php
Строк: 72
<?php
namespace IlluminateHttpTesting;
use IlluminateSupportArr;
use SymfonyComponentMimeMimeTypes;
class MimeType
{
/**
* The mime types instance.
*
* @var SymfonyComponentMimeMimeTypes|null
*/
private static $mime;
/**
* Get the mime types instance.
*
* @return SymfonyComponentMimeMimeTypesInterface
*/
public static function getMimeTypes()
{
if (self::$mime === null) {
self::$mime = new MimeTypes;
}
return self::$mime;
}
/**
* Get the MIME type for a file based on the file's extension.
*
* @param string $filename
* @return string
*/
public static function from($filename)
{
$extension = pathinfo($filename, PATHINFO_EXTENSION);
return self::get($extension);
}
/**
* Get the MIME type for a given extension or return all mimes.
*
* @param string $extension
* @return string
*/
public static function get($extension)
{
return Arr::first(self::getMimeTypes()->getMimeTypes($extension)) ?? 'application/octet-stream';
}
/**
* Search for the extension of a given MIME type.
*
* @param string $mimeType
* @return string|null
*/
public static function search($mimeType)
{
return Arr::first(self::getMimeTypes()->getExtensions($mimeType));
}
}