3v4l.org

run code in 300+ PHP versions simultaneously
<?php $json = <<<JSON [{"title":"menu item","link":"#","active":"false","submenu":[{"title":"menu item","link":"#","active":"false"}]},{"title":"menu item","link":"#","active":"true","submenu":[]}] JSON; $menu_array = json_decode($json, true); $html = ''; if (!empty($menu_array)) { $html .= '<ul class="nav navbar-nav ">'; foreach ($menu_array as $li) { if (empty($li['submenu'])) { $html .= '<li>' . '<a href="' . $li['link'] . '" ' . ($li['active'] ? 'class="active"' : '') . '>' . $li['title'] . '</a>' . '</li>'; } } $html .= '</ul>'; }

preferences:
35.23 ms | 402 KiB | 5 Q