TypePHP 编译器
https://swoole.com/aot/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
304 B
18 lines
304 B
--TEST--
|
|
Bug #71660 (array_column behaves incorrectly after foreach by reference)
|
|
--FILE--
|
|
<?php
|
|
$arr = array('id' => 12345, 'name' => 'sam');
|
|
foreach ($arr as &$v) {
|
|
$v = $v;
|
|
}
|
|
|
|
$arr = [$arr];
|
|
|
|
var_dump(array_column($arr, 'name', 'id'));
|
|
?>
|
|
--EXPECT--
|
|
array(1) {
|
|
[12345]=>
|
|
string(3) "sam"
|
|
}
|
|
|