Accessing Arrays inside Arrays In PHP

前端 未结 4 900
花落未央
花落未央 2020-12-24 15:23

Hello I want to access inactive tags inside this array any idea?

stdClass::__set_state(
array
  \'languages\' => 
    array
      76 => 
        array
          


        
4条回答
  •  天命终不由人
    2020-12-24 15:25

    If $a is the array that's passed, $a[76][0]['id'] should give '76' and $a[76][1]['id'] should give '81', but I can't test as I don't have PHP installed on this machine.

提交回复
热议问题