Last active
July 11, 2024 10:53
-
-
Save gubi/83402a9aae7cfa762df8 to your computer and use it in GitHub Desktop.
Get all icons from a font-awesome.css file and list in json mode
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Available Font Awesome icons | |
* | |
* Get all icons from a font-awesome.css file and list in json mode | |
* | |
* @author Alessandro Gubitosi <[email protected]> | |
* @license http://www.gnu.org/licenses/gpl-3.0.html GNU General Public License, version 3 | |
*/ | |
header("Content-type: text/json"); | |
/** | |
* Remove items from an array | |
* @param array $array The array to manage | |
* @param void $element An array or a string of the item to remove | |
* @return array The cleaned array with resetted keys | |
*/ | |
function array_delete($array, $element) { | |
return (is_array($element)) ? array_values(array_diff($array, $element)) : array_values(array_diff($array, array($element))); | |
} | |
$icons_file = "css/font-awesome/css/font-awesome.css"; | |
$parsed_file = file_get_contents($icons_file); | |
preg_match_all("/fa\-([a-zA-z0-9\-]+[^\:\.\,\s])/", $parsed_file, $matches); | |
$exclude_icons = array("fa-lg", "fa-2x", "fa-3x", "fa-4x", "fa-5x", "fa-ul", "fa-li", "fa-fw", "fa-border", "fa-pulse", "fa-rotate-90", "fa-rotate-180", "fa-rotate-270", "fa-spin", "fa-flip-horizontal", "fa-flip-vertical", "fa-stack", "fa-stack-1x", "fa-stack-2x", "fa-inverse"); | |
$icons = (object) array("icons" => array_delete($matches[0], $exclude_icons)); | |
print json_encode($icons); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When using your code, I modified you preg_match_all() line to
preg_match_all("/fa\-([a-zA-z0-9\-]+[^\:\.\,\s\{\>])/", $parsed_file, $matches);
Because some icons could not be excluded correctly since some had '{' and '<' at the end of the string.
I guess you can include this modification in your next version. Greetings!