在 perl 中,我可以将一个列表分配给哈希中的多个值,如下所示:
# define the hash...
my %hash = (
foo => 1,
bar => 2,
baz => 3,
);
# change foo, bar, and baz to 4, 5, and 6 respectively
@hash{ 'foo', 'bar', 'baz' } = ( 4, 5, 6 );
有没有办法在php中做同样的事情?事实上,有没有办法获得一个 assoc 数组的切片?