Home > Backend Development > PHP Tutorial > 如何循环带条件的数组

如何循环带条件的数组

WBOY
Release: 2016-06-23 13:47:23
Original
812 people have browsed it

下面这个数组

$abc=array(     [navigation_list] => Array        (            [0] => Array                (                    [navigation_id] => 1                    [navigation_title] => 题目1                    [navigation_link] => http://127.0.0.1/                    [navigation_sort] => 255                    [navigation_open_type] => 1                )            [1] => Array                (                    [navigation_id] => 2                    [navigation_title] => 题目2                    [navigation_link] => http://127.0.0.1/circle                    [navigation_sort] => 255                    [navigation_open_type] => 1                )            [2] => Array                (                    [navigation_id] => 3                    [navigation_title] => 题目3                    [navigation_link] => http://127.0.0.1/microshop                    [navigation_sort] => 255                    [navigation_open_type] => 1                )            [3] => Array                (                    [navigation_id] => 4                    [navigation_title] => 题目4                    [navigation_link] => http://127.0.0.1/shop/index.php?act=brand                    [navigation_sort] => 255                    [navigation_open_type] => 1                )        ))
Copy after login

如果我想循环出后面二个数组,即前面两个不要,怎么写条件呢
下面代码是我写的,为啥循环不出来呢,哪里错了:
<?php             if ($abct[navigation_list][navigation_id]>2 || $output[navigation_list][navigation_id]>5){      foreach($output['navigation_list'] as $value) {?>      <li class="link"><a href="<?php echo $value['navigation_link'];?>" <?php echo $value['navigation_open_type']=='1'?'target="_blank"':'';?>><?php echo $value['navigation_title'] ?></a></li>      <?php } ?>      <?php }?>
Copy after login


回复讨论(解决方案)

<?php      foreach($abc['navigation_list'] as $value) {?><?php if ($value['navigation_id']>2){ ?>           <li class="link"><a href="<?php echo $value['navigation_link'];?>" <?php echo $value['navigation_open_type']=='1'?'target="_blank"':'';?>><?php echo $value['navigation_title'] ?></a></li>      <?php } ?>      <?php }?>
Copy after login

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template