如何用php array_column()提取數(shù)組值

PHP
小樊
82
2024-09-05 01:48:02
欄目: 編程語言

array_column() 函數(shù)在 PHP 中用于從多維數(shù)組(記錄集)中提取一列數(shù)據(jù)

<?php
// 示例數(shù)組,這是一個(gè)包含多個(gè)關(guān)聯(lián)數(shù)組的索引數(shù)組
$data = [
    [
        'id' => 1,
        'name' => 'Alice',
        'age' => 30
    ],
    [
        'id' => 2,
        'name' => 'Bob',
        'age' => 25
    ],
    [
        'id' => 3,
        'name' => 'Carol',
        'age' => 22
    ]
];

// 使用 array_column() 提取 'name' 列
$names = array_column($data, 'name');

// 輸出提取到的名字?jǐn)?shù)組
print_r($names);
?>

上述代碼會(huì)輸出以下結(jié)果:

Array
(
    [0] => Alice
    [1] => Bob
    [2] => Carol
)

在這個(gè)例子中,我們首先定義了一個(gè)包含多個(gè)關(guān)聯(lián)數(shù)組的索引數(shù)組 $data。然后,我們使用 array_column() 函數(shù)提取每個(gè)子數(shù)組中的 ‘name’ 列。最后,我們使用 print_r() 函數(shù)輸出提取到的名字?jǐn)?shù)組。

0