要擴(kuò)展 PHP 的 pluck 功能,可以創(chuàng)建一個(gè)自定義函數(shù)或者使用現(xiàn)有的庫(kù)來(lái)實(shí)現(xiàn)。以下是一種方法:
function pluck($array, $key) {
$result = [];
foreach ($array as $item) {
if (isset($item[$key])) {
$result[] = $item[$key];
}
}
return $result;
}
// 使用示例
$data = [
['name' => 'Alice', 'age' => 30],
['name' => 'Bob', 'age' => 25],
['name' => 'Charlie', 'age' => 35]
];
$names = pluck($data, 'name');
print_r($names); // Output: ['Alice', 'Bob', 'Charlie']
use Illuminate\Support\Collection;
$data = new Collection([
['name' => 'Alice', 'age' => 30],
['name' => 'Bob', 'age' => 25],
['name' => 'Charlie', 'age' => 35]
]);
$names = $data->pluck('name')->all();
print_r($names); // Output: ['Alice', 'Bob', 'Charlie']
無(wú)論是使用自定義函數(shù)還是第三方庫(kù),都可以方便地?cái)U(kuò)展 PHP 的 pluck 功能,使其更加靈活和高效。