trungpv93/file-info-php

Detect file info from local or remote file (URL)

1.0 2016-09-29 18:49 UTC

This package is not auto-updated.

Last update: 2024-05-11 17:39:57 UTC


README

Detect file info from local or remote file (URL).

##Installation

composer require trungpv93/file-info-php

Usage

$finfo = new \Trungpv93\FileInfoPHP\FileInfo();
$i = $finfo->get($link);

Laravel support

add provider and alias in config/app.php

'providers' => [
    ...
    Trungpv93\FileInfoPHP\FileInfoPHPServiceProvider::class
]

...

'aliases' => [
    ...
    'FileInfo'	=> Trungpv93\FileInfoPHP\FileInfoPHPFacade::class,
],

and in laravel you use it

    FileInfo::get($link);

Licence

MIT