bermudaphp/detector

Maintainers

Package info

github.com/bermudaphp/detector

pkg:composer/bermudaphp/detector

Statistics

Installs: 69

Dependents: 3

Suggesters: 0

Stars: 0

Open Issues: 0

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

This package is auto-updated.

Last update: 2026-03-11 00:19:55 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;