Upgraded phpmyadmin to 4.0.4 (All Languages) - No modifications yet
[openemr.git] / phpmyadmin / libraries / mime.lib.php
blob954c762fdbbcf31821bfd03d0fde684e1a7cd414
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
4 * MIME detection code.
6 * @package PhpMyAdmin
7 * @todo Maybe we could try to use fileinfo module if loaded
8 */
9 if (! defined('PHPMYADMIN')) {
10 exit;
13 /**
14 * Tries to detect MIME type of content.
16 * @param string &$test
18 * @return string
20 function PMA_detectMIME(&$test)
22 $len = strlen($test);
23 if ($len >= 2 && $test[0] == chr(0xff) && $test[1] == chr(0xd8)) {
24 return 'image/jpeg';
26 if ($len >= 3 && substr($test, 0, 3) == 'GIF') {
27 return 'image/gif';
29 if ($len >= 4 && substr($test, 0, 4) == "\x89PNG") {
30 return 'image/png';
32 return 'application/octet-stream';