当前位置:Gxlcms > PHP教程 > php根据二进制(文件头)信息判断文件类型的方法

php根据二进制(文件头)信息判断文件类型的方法

时间:2021-07-01 10:21:17 帮助过:4人阅读

  1. $files = array('./test.jpg', 'test.png');
  2. $fileTypes = array(
  3. 7790 => 'exe',
  4. 7784 => 'midi',
  5. 8075 => 'zip',
  6. 8297 => 'rar',
  7. 225216 => 'jpg',
  8. 7173 => 'gif',
  9. 6677 => 'bmp',
  10. 13780 => 'png',
  11. );
  12. foreach($files as $file) {
  13. $fp = fopen($file, 'rb');
  14. $bin = fread($fp, 2); // 只读头两个字节
  15. fclose($fp);
  16. $strInfo = @unpack("C2chars", $bin);
  17. $typeCode = intval($strInfo['chars1'].$strInfo['chars2']);
  18. $fileType = isset($fileTypes[$typeCode]) ? $fileTypes[$typeCode] : 'unknown';
  19. echo $file , ' type : ', $fileType, ' code : ', $fileType, '
    ';
  20. }

人气教程排行