11 lines
No EOL
95 B
PHP
Executable file
11 lines
No EOL
95 B
PHP
Executable file
<?php
|
|
|
|
function svgicon($string) {
|
|
$arr = [
|
|
'' => ''
|
|
];
|
|
|
|
return $arr[$string];
|
|
}
|
|
|
|
?>
|