<?php
namespace Yurun\Util\YurunHttp\Http\Psr7\Consts;
abstract class MediaType
{
const ALL = '*
public static function getExt($contentType)
{
list($firstContentType) = explode(';', $contentType, 2);
if(isset(static::$extMap[$firstContentType]))
{
return static::$extMap[$firstContentType];
}
else
{
return null;
}
}
}