brandembassy / file-type-detector
Detects file type by filename or content and generates correct mimetype. Forked from https://github.com/wapmorgan/FileTypeDetector
2.3.3
2024-10-01 07:58 UTC
Requires
- php: ^7.2 || ^8.0
- marc-mabe/php-enum: ^3.1 || ^4.2
Requires (Dev)
- ext-zip: *
- brandembassy/coding-standard: ^8.1
- phpunit/phpunit: ^8.5
This package is auto-updated.
Last update: 2024-10-31 08:09:01 UTC
README
Project forked from https://github.com/wapmorgan/FileTypeDetector
File Type Detector
Files type detector based on file name extension or file content (binary content).
File Type detection
- Detection by file name:
Detector::detectByFilename(...filename...): array|boolean
- Detection by file content or stream content:
Detector::detectByContent(...filename/resource...): array|boolean
Both functions will return an array
with following elements in case of success:
[0]
- Type of file (Detector::AUDIO
and so on)[1]
- Format of file (Detector::MP3
and so on)[2]
- Mime type of file ('audio/mpeg'
for example)
In case of failure it will return false
.
Example:
$type = wapmorgan\FileTypeDetector\Detector::detectByFilename($filename); // or $type = wapmorgan\FileTypeDetector\Detector::detectByContent('file-without-extension'); // or $type = wapmorgan\FileTypeDetector\Detector::detectByContent(fopen('http://somedomain/somepath', 'r'));
Mimetype resolving
To get correct mimetype for file only there is getMimeType($file)
function.
$mime = wapmorgan\FileTypeDetector\Detector::getMimeType($file); // or $mime = wapmorgan\FileTypeDetector\Detector::getMimeType(fopen('somefile', 'r'));
Installation
composer require brandembassy/file-type-detector