Skip to content

Instantly share code, notes, and snippets.

@davidchc
Created October 20, 2017 18:12
Show Gist options
  • Save davidchc/258213c5ae8ad79f21ca2079b7125958 to your computer and use it in GitHub Desktop.
Save davidchc/258213c5ae8ad79f21ca2079b7125958 to your computer and use it in GitHub Desktop.
<?php $menu = [];?>
<?php foreach($items as $item) : ?>
<?php if(!in_array($item['menu'], $menu)) : ?>
<h3><?php echo $item['menu']?></h3>
<?php $menu[] = $item['menu'];?>
<?php endif;?>
<p><?php echo $item['subMenu']?></p>
<?php endforeach?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment