PHP code example of pear / mime_type

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

    

pear / mime_type example snippets


     $type = MIME_Type::autoDetect('/path/to/file');
    if (PEAR::isError($type)) {
        echo 'Error: ' . $type->getMessage() . "\n";
        exit(1);
    } else {
        echo 'MIME type: ' . $type . "\n";
    }