bermudaphp/detector

Installs: 69

Dependents: 3

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Open Issues: 0

pkg:composer/bermudaphp/detector

v1.0.5 2023-04-02 12:25 UTC

This package is auto-updated.

Last update: 2025-09-10 23:21:01 UTC


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;