bermudaphp / detector
v1.0.5
2023-04-02 12:25 UTC
Requires
- php: ^8.0|^8.1
- bermudaphp/config: ^1.2
- devanych/mime-types: ^2.1.2
README
composer require bermudaphp/detector
Usage
$detector = new FinfoDetector; $detector->detectMimeType(file_get_contents('index.html')) // text/html; $detector->detectExtension(file_get_contents('index.html')) // html; $detector->detectFileMimeType('index.html') // text/html; $detector->detectFileExtension('index.html') // html;