Home  >  Article  >  Backend Development  >  How to change the file type PHP file type detection code

How to change the file type PHP file type detection code

WBOY
WBOYOriginal
2016-07-29 08:39:38982browse

$filename = "D:\296.mid";
$file = fopen($filename, "rb");
$bin = fread($file, 2); //Read only 2 bytes
fclose($file);
$strInfo = @unpack("c2chars", $bin);
$typeCode = intval($strInfo['chars1'].$strInfo['chars2']);
$fileType = ' ';
switch ($typeCode)
{
case 7790:
$fileType = 'exe';
break;
case 7784:
$fileType = 'midi';
break;
case 8297:
$fileType = 'rar ';
break;
case 255216:
$fileType = 'jpg';
break;
case 7173:
$fileType = 'gif';
case 13780:
$fileType = 'png';
break;
default:
echo 'unknown';
}
echo 'this is a(an) '.$fileType.' file:'.$typeCode;
? >

The above introduces how to change the file type PHP file type judgment code, including how to change the file type. I hope it will be helpful to friends who are interested in PHP tutorials.


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn