PHP - foreach 循环中变量前的 &

2021-12-26 00:00:00 reference foreach php

可能的重复:
参考 - 这个符号在 PHP 中是什么意思? >

我需要知道为什么我们在 foreach 循环中的变量之前使用&符号

I need to know why we use ampersand before the variable in foreach loop

foreach ($wishdets as $wishes => &$wishesarray) {
    foreach ($wishesarray as $categories => &$categoriesarray) {

    }
}

推荐答案

这个例子会告诉你区别

$array = array(1, 2);
foreach ($array as $value) {
    $value++;
}
print_r($array); // 1, 2 because we iterated over copy of value

foreach ($array as &$value) {
    $value++;
}
print_r($array); // 2, 3 because we iterated over references to actual values of array

在此处查看 PHP 文档:http://pl.php.net/manual/en/control-structures.foreach.php

Check out the PHP docs for this here: http://pl.php.net/manual/en/control-structures.foreach.php

相关文章