]> git.mxchange.org Git - friendica.git/blob - include/attach.php
make 'PHP "register_argc_argv"' easier to translate, may require fix for po2php
[friendica.git] / include / attach.php
1 <?php
2
3
4 function z_mime_content_type($filename) {
5
6         $mime_types = array(
7
8                 'txt' => 'text/plain',
9                 'htm' => 'text/html',
10                 'html' => 'text/html',
11                 'php' => 'text/html',
12                 'css' => 'text/css',
13                 'js' => 'application/javascript',
14                 'json' => 'application/json',
15                 'xml' => 'application/xml',
16                 'swf' => 'application/x-shockwave-flash',
17                 'flv' => 'video/x-flv',
18
19                 // images
20                 'png' => 'image/png',
21                 'jpe' => 'image/jpeg',
22                 'jpeg' => 'image/jpeg',
23                 'jpg' => 'image/jpeg',
24                 'gif' => 'image/gif',
25                 'bmp' => 'image/bmp',
26                 'ico' => 'image/vnd.microsoft.icon',
27                 'tiff' => 'image/tiff',
28                 'tif' => 'image/tiff',
29                 'svg' => 'image/svg+xml',
30                 'svgz' => 'image/svg+xml',
31
32                 // archives
33                 'zip' => 'application/zip',
34                 'rar' => 'application/x-rar-compressed',
35                 'exe' => 'application/x-msdownload',
36                 'msi' => 'application/x-msdownload',
37                 'cab' => 'application/vnd.ms-cab-compressed',
38
39                 // audio/video
40                 'mp3' => 'audio/mpeg',
41                 'wav' => 'audio/wav',
42                 'qt' => 'video/quicktime',
43                 'mov' => 'video/quicktime',
44                 'ogg' => 'application/ogg',
45
46                 // adobe
47                 'pdf' => 'application/pdf',
48                 'psd' => 'image/vnd.adobe.photoshop',
49                 'ai' => 'application/postscript',
50                 'eps' => 'application/postscript',
51                 'ps' => 'application/postscript',
52
53                 // ms office
54                 'doc' => 'application/msword',
55                 'rtf' => 'application/rtf',
56                 'xls' => 'application/vnd.ms-excel',
57                 'ppt' => 'application/vnd.ms-powerpoint',
58
59
60                 // open office
61                 'odt' => 'application/vnd.oasis.opendocument.text',
62                 'ods' => 'application/vnd.oasis.opendocument.spreadsheet',
63         );
64
65         $dot = strpos($filename,'.');
66         if($dot !== false) {
67                 $ext = strtolower(substr($filename,$dot+1));
68                 if (array_key_exists($ext, $mime_types)) {
69                         return $mime_types[$ext];
70                 }
71         }
72 // can't use this because we're just passing a name, e.g. not a file that can be opened
73 //      elseif (function_exists('finfo_open')) {
74 //              $finfo = @finfo_open(FILEINFO_MIME);
75 //              $mimetype = @finfo_file($finfo, $filename);
76 //              @finfo_close($finfo);
77 //              return $mimetype;
78 //      }
79         else {
80                 return 'application/octet-stream';
81         }
82 }
83