PHP code example of alirezax5 / mime-type

1. Go to this page and download the library: Download alirezax5/mime-type 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/ */

    

alirezax5 / mime-type example snippets




use alirezax5\MimeType;

 MimeType::setAllowMime('application/json');
if (MimeType::isAllowed($_FILES['file']['name'])) {
    echo 'ok';
}