Skip to content

Instantly share code, notes, and snippets.

@Inontran
Created January 31, 2021 11:05
Show Gist options
  • Select an option

  • Save Inontran/ee5f80e6649af3dfdd73f5711e338b4f to your computer and use it in GitHub Desktop.

Select an option

Save Inontran/ee5f80e6649af3dfdd73f5711e338b4f to your computer and use it in GitHub Desktop.
код php для загрузки иконок в guide
<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