php 文件格式类入门实例
内容摘要
这篇文章主要为大家详细介绍了php 文件格式类入门实例,具有一定的参考价值,可以用来参考一下。
对php文件格式类对此感兴趣的朋友,看看idc笔记做的技术笔记!
<?
/**
* php文
对php文件格式类对此感兴趣的朋友,看看idc笔记做的技术笔记!
<?
/**
* php文
文章正文
这篇文章主要为大家详细介绍了php 文件格式类入门实例,具有一定的参考价值,可以用来参考一下。
对php文件格式类对此感兴趣的朋友,看看idc笔记做的技术笔记!1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 | <code class = "php" > <? /** * php文件格式类 * * @param * @author php教程 www.idcnote.com **/ $mime_types = array ( 'gif' => 'image/gif' , 'jpg' => 'image/jpeg' , 'jpeg' => 'image/jpeg' , 'jpe' => 'image/jpeg' , 'bmp' => 'image/bmp' , 'png' => 'image/png' , 'tif' => 'image/tiff' , 'tiff' => 'image/tiff' , 'pict' => 'image/x-pict' , 'pic' => 'image/x-pict' , 'pct' => 'image/x-pict' , 'tif' => 'image/tiff' , 'tiff' => 'image/tiff' , 'psd' => 'image/x-photoshop' , 'swf' => 'application/x-shockwave-flash' , 'js' => 'application/x-javascrīpt' , 'pdf' => 'application/pdf' , 'ps' => 'application/postscrīpt' , 'eps' => 'application/postscrīpt' , 'ai' => 'application/postscrīpt' , 'wmf' => 'application/x-msmetafile' , 'css' => 'text/css' , 'htm' => 'text/html' , 'html' => 'text/html' , 'txt' => 'text/plain' , 'xml' => 'text/xml' , 'wml' => 'text/wml' , 'wbmp' => 'image/vnd.wap.wbmp' , 'mid' => 'audio/midi' , 'wav' => 'audio/wav' , 'mp3' => 'audio/mpeg' , 'mp2' => 'audio/mpeg' , 'avi' => 'video/x-msvideo' , 'mpeg' => 'video/mpeg' , 'mpg' => 'video/mpeg' , 'qt' => 'video/quicktime' , 'mov' => 'video/quicktime' , 'lha' => 'application/x-lha' , 'lzh' => 'application/x-lha' , 'z' => 'application/x-compress' , 'gtar' => 'application/x-gtar' , 'gz' => 'application/x-gzip' , 'gzip' => 'application/x-gzip' , 'tgz' => 'application/x-gzip' , 'tar' => 'application/x-tar' , 'bz2' => 'application/bzip2' , 'zip' => 'application/zip' , 'arj' => 'application/x-arj' , 'rar' => 'application/x-rar-compressed' , 'hqx' => 'application/mac-binhex40' , 'sit' => 'application/x-stuffit' , 'bin' => 'application/x-macbinary' , 'uu' => 'text/x-uuencode' , 'uue' => 'text/x-uuencode' , 'latex' => 'application/x-latex' , //开源OSPhP.COM.CN 'ltx' => 'application/x-latex' , 'tcl' => 'application/x-tcl' , 'pgp' => 'application/pgp' , 'asc' => 'application/pgp' , 'exe' => 'application/x-msdownload' , 'doc' => 'application/msword' , 'rtf' => 'application/rtf' , 'xls' => 'application/vnd.ms-excel' , 'ppt' => 'application/vnd.ms-powerpoint' , 'mdb' => 'application/x-msaccess' , 'wri' => 'application/x-mswrite' , ); /*** 来自php教程(www.idcnote.com) ***/ </code> |
注:关于php 文件格式类入门实例的内容就先介绍到这里,更多相关文章的可以留意
代码注释