참조별 전달과 함께 foreach 루프를 사용할 때 PHP 배열의 마지막 요소가 중복되는 이유는 무엇입니까?

Susan Sarandon
풀어 주다: 2024-11-14 20:19:01
원래의
367명이 탐색했습니다.

Why does the last element in a PHP array duplicate when using a foreach loop with pass-by-reference?

PHP Foreach Pass by Reference: Last Element Duplication Mystery Unveiled

Consider the following PHP code:

$arr = ["foo", "bar", "baz"];

foreach ($arr as &$item) { /* do nothing by reference */ }
print_r($arr);

foreach ($arr as $item) { /* do nothing by value */ }
print_r($arr);
로그인 후 복사

Upon execution, it unexpectedly modifies the original array $arr, resulting in the following output:

Array
(
    [0] => foo
    [1] => bar
    [2] => baz
)
Array
(
    [0] => foo
    [1] => bar
    [2] => bar
)
로그인 후 복사

Understanding the Behavior

After the initial foreach loop, the variable $item remains a reference to the same memory location as $arr[2]. Consequently, each iteration of the second foreach loop, which passes arguments by value, replaces the referenced value (and hence $arr[2]) with the new iteration's value.

Detailed Explanation

In the first loop:

  • $item references the value at $arr[0], which is 'foo'.
  • $item and $arr[0] both point to 'foo'.
  • This process repeats for $arr[1] and $arr[2].

At the end of the first loop, $item still points to $arr[2].

In the second loop:

  • $item is assigned the value of $arr[0], which is 'foo'.
  • $arr[2] (still referenced by $item) is also set to 'foo'.
  • This overwrites the original value of 'baz' at $arr[2].
  • The same process occurs for $arr[1], and finally, $arr[2] is assigned the value of $arr[2], which is now 'bar' due to the previous iteration.

Clarifying Misconception

This behavior is not considered a bug. It aligns with the intended behavior of references in PHP. Similar results would be observed if you used the following syntax outside of a loop:

for ($i = 0; $i < count($arr); $i++) { $item = $arr[$i]; }
로그인 후 복사

Conclusion

When working with references in PHP, it is crucial to recognize that modifications made through the referenced variable will also affect the original value. This behavior can be leveraged effectively or avoided depending on the desired outcome.

위 내용은 참조별 전달과 함께 foreach 루프를 사용할 때 PHP 배열의 마지막 요소가 중복되는 이유는 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿