bermudaphp / detector
Installs: 69
Dependents: 3
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/bermudaphp/detector
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;