Fourleafclover analysis of the difference between for and foreach in PHP

Source: Internet
Author: User
Note: Unless the array is referenced, foreach operates on a copy of the specified array, not the array itself. So the array pointers are not changed by the each () structure, and the changes to the returned array cells do not affect the original array.
1. Since php5, foreach may also traverse the properties of an object.
2. Since php5, foreach can easily modify the array's cells by adding & before $value, which assigns a value instead of copying a value.

Copy the Code code as follows:


$arr = Array (1, 2, 3, 4);
foreach ($arr as & $value) {
$value = $value * 2;
}
?>
Output: $arr =array (2, 4, 6, 8)


Note: foreach does not support the ability to suppress error messages with "@".

The above describes the Fourleafclover php for and foreach differential analysis, including the fourleafclover aspects of the content, I hope that the PHP tutorial interested in a friend helpful.

  • Related Article

    Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.