📄 mime.inc.php
字号:
<?php
function mime_type ( $file )
{
$ext=@strtolower(@substr($file,@strrpos($file,'.')+1));
$mime = array
(
'avi' => 'video/x-msvideo',
'bmp' => 'image/bmp',
'css' => 'text/css',
'js' => 'application/x-javascript js',
'doc' => 'application/msword',
'gif' => 'image/gif',
'htm' => 'text/html',
'html' => 'text/html',
'jpg' => 'image/jpeg',
'jpeg' => 'image/jpeg',
'mov' => 'video/quicktime',
'mpeg' => 'video/mpeg',
'mp3' => 'audio/mpeg mpga mp2 mp3',
'pdf' => 'application/pdf',
'php' => 'text/html',
'png' => 'image/png',
'qt' => 'video/quicktime',
'rar' => 'application/x-rar',
'swf' => 'application/x-shockwave-flash swf',
'txt' => 'text/plain',
'wmv' => 'video/x-ms-wmv',
'xml' => 'text/xml',
'xsl' => 'text/xml',
'xls' => 'application/msexcel x-excel',
'zip' => 'application/zip x-zip',
);
return isset($mime[$ext])?$mime[$ext]:'application/octet-stream';
}
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -