1
0
mirror of https://github.com/php/php-src.git synced 2026-04-20 14:31:06 +02:00
Files
archived-php-src/Zend/tests/list/list_reference_004.phpt
Gabriel Caruso ded3d984c6 Use EXPECT instead of EXPECTF when possible
EXPECTF logic in run-tests.php is considerable, so let's avoid it.
2018-02-20 21:53:48 +01:00

29 lines
342 B
PHP

--TEST--
"Reference Unpacking - Foreach" list()
--FILE--
<?php
$coords = array(array(1, 2), array(3, 4));
foreach ($coords as [&$x, $y]) {
$x++;
$y++;
}
var_dump($coords);
?>
--EXPECT--
array(2) {
[0]=>
array(2) {
[0]=>
int(2)
[1]=>
int(2)
}
[1]=>
array(2) {
[0]=>
&int(4)
[1]=>
int(4)
}
}