Is there a function to extract a 'column' from an array in PHP?

前端 未结 14 1695
鱼传尺愫
鱼传尺愫 2020-11-21 07:33

I have an array of arrays, with the following structure :

array(array(\'page\' => \'page1\', \'name\' => \'pagename1\')
      array(\'page\' => \'pa         


        
14条回答
  •  耶瑟儿~
    2020-11-21 07:52

    if (!function_exists('array_column')) {
        function array_column($array,$column) {
        $col = array();
        foreach ($array as $k => $v) {
            $col[]=$v[$column];
        }
        return $col;
        }
    }
    

    This should work for php versions < 5.5 and degrade in case the function exist

提交回复
热议问题