php Get all values from multidimensional associative array

后端 未结 3 1833
醉梦人生
醉梦人生 2021-01-25 00:22

how can i get all values from multidimensional associative array I dont want to use print_r want to control my array put all the value in normal array with unique values my arr

3条回答
  •  死守一世寂寞
    2021-01-25 00:33

    You can use array_walk

    $array = array(...); //your values here
    function output($item, $key) {
         echo $key . ' =>' . $item;
    }
    array_walk($array, 'output');
    

提交回复
热议问题