2 /* vim: set expandtab sw=4 ts=4 sts=4: */
7 * @todo Maybe we could try to use fileinfo module if loaded
9 if (! defined('PHPMYADMIN')) {
14 * Tries to detect MIME type of content.
16 * @param string &$test First few bytes of content to use for detection
20 function PMA_detectMIME(&$test)
22 $len = /*overload*/mb_strlen($test);
23 if ($len >= 2 && $test[0] == chr(0xff) && $test[1] == chr(0xd8)) {
26 if ($len >= 3 && substr($test, 0, 3) == 'GIF') {
29 if ($len >= 4 && /*overload*/mb_substr($test, 0, 4) == "\x89PNG") {
32 return 'application/octet-stream';