$v){ $array[$k] = 1;}" method."/> $v){ $array[$k] = 1;}" method.">
Home > Article > Backend Development > How to modify array value in php foreach
php foreach method to modify the array value: first create a PHP code sample file; then pass "foreach($array as $k => $v){ $array[$k] = 1;}" Method to modify the array value.
Recommended: "PHP Video Tutorial"
The problem of using foreach to change the value of an array in PHP
Turn to the foreach page of the PHP documentation and it says:
"The foreach syntax structure provides a simple way to traverse the array. foreach can only be applied to arrays and objects. If you try Applied to variables of other data types, or uninitialized variables will issue an error message. There are two syntaxes:
foreach (array_expression as $value) statement foreach (array_expression as $key => $value) statement
The first format traverses the given array_expression array. In each loop, the value of the current cell is assigned to $value and the pointer inside the array is moved forward one step (so the next element will be obtained in the next loop).
The second format does the same thing, except the key name of the current element It will also be assigned to the variable $key in each loop."
Then "The first format traverses the given array_expression array. In each loop, the value of the current unit is is assigned to $value and the pointer inside the array moves forward one step (so the next element in the loop will be obtained)." What does this mean? This means that using foreach to traverse an array operates on a copy of the specified array, not the array itself. Just like having a clone of you, no matter how others punch or kick the clone of you, it will have no effect on you.
For example:
foreach($array as $k => $v){ $v = 1; }
Such a modification method does not modify $array itself, but modifies an array it copies. Although it is the same, it is not $array. Therefore, it has no impact on $array.
So what to do? To do this:
foreach($array as $k => $v){ $array[$k] = 1; }
Although $k and $v are also copied, the value of the copied $k is still the same as the value of $k in the original array, so this will succeed.
There is also a more advanced method: you can easily modify the elements of the array by adding & before $v. This method assigns by reference rather than copying a value. For example:
foreach($array as &$v){ $v = 1; } unset($v); // 最后取消掉引用
This will be successful.
The above is the detailed content of How to modify array value in php foreach. For more information, please follow other related articles on the PHP Chinese website!