1. Go to this page and download the library: Download hoa/mime library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
hoa / mime example snippets
print_r(Hoa\Mime\Mime::getExtensionsFromMime('text/html'));
/**
* Will output:
* Array
* (
* [0] => html
* [1] => htm
* )
*/
var_dump(Hoa\Mime\Mime::getMimeFromExtension('webm'));
/**
* Will output:
* string(10) "video/webm"
*/