一款实用php 正则文件扩展名代码
发布:smiling 来源: PHP粉丝网 添加日期:2014-06-03 10:59:20 浏览: 评论:0
- */
- function attachicon($type,$size='') {
- static $attachicons = array(
- 0 => 'common.gif',
- 1 => 'image.gif',
- 2 => 'binary.gif',
- 3 => 'rar.gif',
- 4 => 'msoffice.gif',
- 5 => 'text.gif',
- 6 => 'html.gif',
- 7 => 'real.gif',
- 8 => 'av.gif',
- 9 => 'flash.gif',
- 10 => 'pdf.gif',
- 11 => 'torrent.gif'
- );
- if(preg_match("/image|^(jpg|gif|png|bmp)/", $type)) {
- $typeid = 1;
- } elseif(preg_match("/bittorrent|^torrent/", $type)) {
- $typeid = 11;
- } elseif(preg_match("/pdf|^pdf/", $type)) {
- $typeid = 10;
- } elseif(preg_match("/flash|^(swf|fla|swi)/", $type)) {
- $typeid = 9;
- } elseif(preg_match("/audio|video|^(wav|mid|mp3|m3u|wma|asf|asx|vqf|mpg|mpeg|avi|wmv)/", $type)) {
- $typeid = 8;
- } elseif(preg_match("/real|^(rm|rv)/", $type)) {
- $typeid = 7;
- } elseif(preg_match("/htm|^(php|js|pl|cgi|asp教程)/", $type)) {
- $typeid = 6;
- } elseif(preg_match("/text|^(txt|rtf|wri|chm)/", $type)) {
- $typeid = 5;
- } elseif(preg_match("/word|powerpoint|^(doc|ppt)/", $type)) {
- $typeid = 4;
- } elseif(preg_match("/compressed|^(zip|arj|rar|arc|cab|lzh|lha|tar|gz)/", $type)) {
- $typeid = 3;
- } elseif(preg_match("/octet-stream|^(exe|com|bat|dll)/", $type)) {
- $typeid = 2;
- } else {
- $typeid = 0;
- }
- return $size.$attachicons[$typeid];
- }
Tags: 正则 扩展名 代码
- 上一篇:php检测邮箱地址是否存在
- 下一篇:php url正则表达式
相关文章
- ·php正则连接中文本程序(2013-11-12)
- ·PHP常用正则表达式汇总(2013-11-13)
- ·三分钟学会PHP正则表达式(2013-11-13)
- ·巧用PHP正则表达式判断IP地址(2013-11-13)
- ·如何用正则表达式来表示中文?(2013-11-27)
- ·php正则匹配gb2312和utf-8中文(2013-11-29)
- ·PHP字符串正则替换函数preg_replace(2013-11-29)
- ·php正则表达匹配中文问题分析(2013-11-30)
- ·preg_match正则匹配提示pcre.backtrack_limit(2013-12-02)
- ·常用的php正则表达式收集(2013-12-03)
- ·preg_match正则匹配的字符串(2013-12-03)
- ·日期验证正则表达式(2013-12-11)
- ·php用户注册时常用的一些检验函数总结(2014-01-05)
- ·php正则表达式验证邮箱(2014-01-05)
- ·php/js汉字正则表达式总结(2014-01-05)
- ·php中正则匹配用户密码(2014-01-06)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)