1 2 3 4 5 6 7 8 9 10
<?php foreach($phones as $phone ):?> <?php if(!empty($phone['phone'])): ?> <div class="style"> <div class="profile-phone"> <img src="/images/ico-phone.png" alt=""/> <span><?= $phone['phone'] ?></span> </div> </div> <?php endif; ?> <?php endforeach;?>