1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00
Files
archived-php-src/tests/lang/foreach_with_references_001.phpt
Máté Kocsis 7aacc705d0 Add many missing closing PHP tags to tests
Closes GH-5958
2020-08-09 22:03:36 +02:00

33 lines
360 B
PHP

--TEST--
foreach() with references
--FILE--
<?php
$arr = array(1 => "one", 2 => "two", 3 => "three");
foreach($arr as $key => $val) {
$val = $key;
}
print_r($arr);
foreach($arr as $key => &$val) {
$val = $key;
}
print_r($arr);
?>
--EXPECT--
Array
(
[1] => one
[2] => two
[3] => three
)
Array
(
[1] => 1
[2] => 2
[3] => 3
)