Getting values from associative array

前端 未结 7 987
孤独总比滥情好
孤独总比滥情好 2020-12-17 09:23

I have the following main array called $m

Array
(
    [0] => Array
        (
            [home] => Home
        )

    [1] => Arra         


        
7条回答
  •  一个人的身影
    2020-12-17 09:49

    Try this:

    foreach($options as $o){
        foreach($m as $check){
            if(isset($check[$o])) echo $check[$o];
        }
    }
    

    Although It would be better TO have the array filled with the only the pages and not a multidimensional array

提交回复
热议问题