mirror of
https://github.com/yiisoft/yii.git
synced 2026-03-12 02:56:55 +01:00
17 lines
301 B
PHP
17 lines
301 B
PHP
<?php
|
|
/**
|
|
* File extensions by MIME types.
|
|
*
|
|
* This file contains most commonly used file extensions
|
|
* according to their MIME types.
|
|
*
|
|
* @author UA2004 <ua2004@ukr.net>
|
|
* @since 1.1.16
|
|
*/
|
|
return array(
|
|
'image/gif'=>'gif',
|
|
'image/jpeg'=>'jpg',
|
|
'image/png'=>'png',
|
|
'text/plain'=>'txt',
|
|
);
|