PHP Quote's Call

Source: Internet
Author: User
Invocation of PHP Reference
1.function Test ($arr) {}
echo Test (& $arr);
2.function Test (& $arr) {}
echo Test ($arr);
1 and 2 are the same effect.

3.function &test ($arr) {return $result;}
echo &test ($a); effective
echo test ($a); Returns a value, not a reference
Summary: The reference is returned only when the method is defined with the & and the method in front of the method name plus & when it is called.

4. $a = $b;
When $ A and $b are not re-assigned, that is, when a write operation occurs, the same as the $a=& $b, which is equivalent to an assignment reference.
Copies a copy of a value of $ A only when a $ A or $b change occurs
  • 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.