Fixed error when browsing non SELECT results
[phpmyadmin.git] / libraries / mime.lib.php
blobf1a7757ac0c60db52e1c98bf55424ae63efeff53
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 */
10 /**
11 * Tries to detect MIME type of content.
13 * @param string &$test First few bytes of content to use for detection
15 * @return string
17 function PMA_detectMIME(&$test)
19 $len = mb_strlen($test);
20 if ($len >= 2 && $test[0] == chr(0xff) && $test[1] == chr(0xd8)) {
21 return 'image/jpeg';
23 if ($len >= 3 && substr($test, 0, 3) == 'GIF') {
24 return 'image/gif';
26 if ($len >= 4 && mb_substr($test, 0, 4) == "\x89PNG") {
27 return 'image/png';
29 return 'application/octet-stream';