X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FUtil%2FMimetype.php;h=1a046e76f6d7c57ac4b062123cc0eed0c8df5474;hb=0a45bdd3b71ec0f8744abb3830858a91a4bca146;hp=b2d0e2641ec4887653da5f38a68572078b499b1b;hpb=1de3960e267a8d298348fbca18cf1be1f6a20f7a;p=friendica.git diff --git a/src/Util/Mimetype.php b/src/Util/Mimetype.php index b2d0e2641e..1a046e76f6 100644 --- a/src/Util/Mimetype.php +++ b/src/Util/Mimetype.php @@ -1,7 +1,24 @@ . + * */ + namespace Friendica\Util; class Mimetype @@ -10,12 +27,13 @@ class Mimetype * Return mimetype based on file extension * * @param string $filename filename + * * @return mixed array or string */ - public static function getContentType($filename) + public static function getContentType(string $filename) { $mime_types = [ - + /*'txt' => 'text/plain', 'htm' => 'text/html', 'html' => 'text/html', @@ -26,7 +44,7 @@ class Mimetype 'xml' => 'application/xml', 'swf' => 'application/x-shockwave-flash', 'flv' => 'video/x-flv', - + // images 'png' => 'image/png', 'jpe' => 'image/jpeg', @@ -39,14 +57,14 @@ class Mimetype 'tif' => 'image/tiff', 'svg' => 'image/svg+xml', 'svgz' => 'image/svg+xml', - + // archives 'zip' => 'application/zip', 'rar' => 'application/x-rar-compressed', 'exe' => 'application/x-msdownload', 'msi' => 'application/x-msdownload', 'cab' => 'application/vnd.ms-cab-compressed', - + // audio/video 'mp3' => 'audio/mpeg', 'wav' => 'audio/wav', @@ -57,14 +75,14 @@ class Mimetype 'avi' => 'video/x-msvideo', 'wmv' => 'video/x-ms-wmv', 'wma' => 'audio/x-ms-wma', - + // adobe 'pdf' => 'application/pdf', 'psd' => 'image/vnd.adobe.photoshop', 'ai' => 'application/postscript', 'eps' => 'application/postscript', 'ps' => 'application/postscript', - + // ms office 'doc' => 'application/msword', 'docx' => 'application/vnd.openxmlformats-officedocument.wordprocessingml.document', @@ -73,12 +91,12 @@ class Mimetype 'xlsx' => 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', 'ppt' => 'application/vnd.ms-powerpoint', 'pptx' => 'application/vnd.openxmlformats-officedocument.presentationml.presentation', - - + + // open office 'odt' => 'application/vnd.oasis.opendocument.text', 'ods' => 'application/vnd.oasis.opendocument.spreadsheet',*/ - + // Assembled from the original Friendica list and // lists from http://www.freeformatter.com/mime-types-list.html // and http://www.webmaster-toolkit.com/mime-types.shtml @@ -1070,8 +1088,8 @@ class Mimetype 'zoo' => 'application/octet-stream', 'zsh' => 'text/x-script.zsh' ]; - - $dot = strpos($filename, '.'); + + $dot = strrpos($filename, '.'); if ($dot !== false) { $ext = strtolower(substr($filename, $dot + 1)); if (array_key_exists($ext, $mime_types)) {