14 lines
199 B
PHP
14 lines
199 B
PHP
<?php
|
|
|
|
/**
|
|
* HTML mime types
|
|
*/
|
|
return array(
|
|
'html|htm' => 'text/html',
|
|
'rtf|rtx' => 'text/richtext',
|
|
'txt' => 'text/plain',
|
|
'xsd' => 'text/xsd',
|
|
'xsl' => 'text/xsl',
|
|
'xml' => 'text/xml'
|
|
);
|