PHP code example of websemantics / file-icons

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

    

websemantics / file-icons example snippets


use Websemantics\FileIcons\FileIcons;

$icons = new FileIcons();

FileIcons::

$filename = 'src/index.php';
$class_name = $icons->getClass($filename);

$filename = 'README.md';
$class_name = $icons->getClassWithColor($filename);

echo "<a><i class='$class_name'></i>$filename</a>";