我想知道是否有一个原生 PHP 函数用于返回一个数组,该数组由另一个数组中的一组给定 key=>value 元素组成,给定一个需要键的列表。这就是我的意思:
// Nice information
$source_array = array('a' => 'hello', 'b' => 'goodbye', 'c' => 'good day', 'd' => 'sunshine');
// Required element keys
$array_two = array('a','b');
$array_three = array('a','d');
// Get that stuff from $source_array...
// $array_two_result = ???
// $array_three_result = ???
// Show it
print_r($array_two_result);
print_r($array_three_result);
输出:
Array(
[a] => 'hello'
[b] => 'goodbye'
)
Array(
[a] => 'hello'
[d] => 'sunshine'
)
我一直在查看文档,但目前还找不到任何东西,但在我看来,这并不是一件特别不正常的事情,因此提出了这个问题。