Heim  >  Artikel  >  Backend-Entwicklung  >  php 检测文件类型的函数

php 检测文件类型的函数

WBOY
WBOYOriginal
2016-07-25 09:00:481229Durchsuche
  1. //检测文件类型
  2. //by http://bbs.it-home.org
  3. function checkFileType($filename){
  4. //文件头
  5. $_typecode = array(
  6. '3780',//PDF
  7. '8075',//.docx,.xlsx,.pptx,.potx,.vsdx,.odt
  8. '208207',//.doc,.xls,.ppt,.vsd,.pot,.wps,.dps,.et
  9. );
  10. $file = fopen($filename, "rb");
  11. //contents = stream_get_contents($file);
  12. //$contents = fread($file, filesize($filename));
  13. $bin = fread($file, 2); //只读2字节
  14. fclose($file);
  15. $strInfo = @unpack("C2chars", $bin);// C为无符号整数,网上搜到的都是c,为有符号整数,这样会产生负数判断不正常
  16. $typeCode = intval($strInfo['chars1'].$strInfo['chars2']);
  17. exec("file $filename",$output,$return_var);//用linux系统命令file判断上传文件的类型,主要是判断txt,rtf文件类型
  18. $pattern = '/text,/';//rtf和txt文档用file检测都会被检测为text
  19. $_count = preg_match($pattern,strrchr($output[0],":"));
  20. echo $typeCode;
  21. if(in_array($typeCode,$_typecode) || $_count == 1) {
  22. return true;
  23. }else{
  24. return false;
  25. }
  26. }
  27. ?>
复制代码


Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn