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

前端 未结 14 1380
鱼传尺愫
鱼传尺愫 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:55

    There is a built-in function actually, it's called array_column(...).

    Here is all you need to know about it : https://www.php.net/manual/fr/function.array-column.php

提交回复
热议问题