php通过文件头判断格式的方法
php通过文件头判断格式的方法
发布时间:2016-12-29 来源:查字典编辑
摘要:本文实例讲述了php通过文件头判断格式的方法。分享给大家供大家参考,具体如下:functionjudgeFile($file,$form){...

本文实例讲述了php通过文件头判断格式的方法。分享给大家供大家参考,具体如下:

function judgeFile($file,$form){ if(!empty($file) && !empty($form)){ $filehead = fopen($file,'r'); $bin = fread($filehead, 2); fclose($filehead); $data = unpack('C2chars', $bin); $type_code = intval($data['chars1'].$data['chars2']); switch ($type_code) { case 7790: $fileType = 'exe';break; case 7784: $fileType = 'midi';break; case 8075: $fileType = 'zip';break; case 8297: $fileType = 'rar';break; case 255216: $fileType = 'jpg';break; case 7173: $fileType = 'gif';break; case 6677: $fileType = 'bmp';break; case 13780: $fileType = 'png';break; default: $fileType = 'unknown';break; } if(!is_array($form)){ if($fileType==$form){ return true; }else{ return false; } }else{ if(in_array($file, $form)){ return true; }else{ return FALSE; } } }else{ return false; } }

补充:小编在这里推荐一款本站的php格式化美化的排版工具帮助大家在以后的PHP程序设计中进行代码排版:

php代码在线格式化美化工具:

http://tools.jb51.net/code/phpformat

另外,由于php属于C语言风格,因此下面这款工具同样可以实现php代码的格式化:

C语言风格/HTML/CSS/json代码格式化美化工具:

http://tools.jb51.net/code/ccode_html_css_json

希望本文所述对大家PHP程序设计有所帮助。

推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
相关阅读
网友关注
最新php教程学习
热门php教程学习
编程开发子分类