欢迎各位兄弟 发布技术文章
这里的技术是共享的
if(!empty($categorys) && is_array($categorys)){ $html .= '<ul class="list-group">'."\n"; foreach($categorys as $key=>$category){ $html .='<li class="list-group-item">'.$category['name'].'</li>'."\n"; if(!empty($category['child']) && is_array($category['child'])){ $html .= categorysul($category['child']); } $html .= '</li>'."\n"; } $html .= '</ul>'."\n"; }