I need to break the multidimensional array that appears from api, here it is going into one with the help of array_push (). How to set keys for them to make it easier to take data from an array in an array

$Query_parameters = array(); array_push($Query_parameters, $Send, $Thank, $Call, $Contakt, $Store, $User, $Mobile, $Time); foreach ($Query_parameters as $value => $i) { echo $value[1]; --> Здесь должно браться данные в массиве $Send, в который находится в $Query_parameters } 

Array example:

 Array ( [0] => Вася [1] => 16 [2] => школьник ) Array ( [0] => Петя [1] => 25 [2] => программист ) Array ( [0] => Саня [1] => 55 [2] => инженер ) 
  • What are these variables? $ Send, $ Thank, $ Call, $ Contakt, $ Store, $ User, $ Mobile, $ Time - Yaroslav Molchan
  • These are arrays containing the parameters that the api issued. API Metrics, if that. - Vitali Kessel
  • Well, what keys do you want them to install? You have the same index array, it is not clear what is where. - Yaroslav Molchan Nov.
  • Well, for example, the $ Send array should be '0' => Array, and so on - Vitaly Kessel
  • If you take the code with Foreach, which I wrote above, then it will work like this: 14155733234062017-12-03, when it should output 14. It outputs data from all arrays, when it is necessary that everything is broken separately - Vitaly Kessel

0