Created
January 31, 2021 11:05
-
-
Save Inontran/ee5f80e6649af3dfdd73f5711e338b4f to your computer and use it in GitHub Desktop.
код php для загрузки иконок в guide
This file contains hidden or 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
| <h2 class="bg-warning p-4 mb-4">Иконки</h2> | |
| <div class="row mx-n2 pb-5"> | |
| <?php | |
| $path_to_file = BASE . 'styles/images/icons' . DS; | |
| $scanned_directory = array_values(array_diff(scandir($path_to_file), array('..', '.'))); | |
| ?> | |
| <?php for($i = 0; $i < count($scanned_directory); $i++):?> | |
| <div class="col-auto px-2"> | |
| <img src="<?=SITE. 'styles/images/icons/' . $scanned_directory[$i];?>"> | |
| </div> | |
| <?php endfor;?> | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment