Invoke method of PHP reference Analysis _php Skill

Source: Internet
Author: User

This example describes the invocation method of a PHP reference. Share to everyone for your reference, specific as follows:

Example 1:

function test ($arr) {} 
echo Test (& $arr); 

Example 2:

Function test (& $arr) {} 
echo Test ($arr); 

Examples 1 and 2 are the same effect.

Example 3:

function &test ($arr) {return $result;} 
echo &test ($a);//valid 
echo Test ($a);//Returns a value, not a reference 

Summary: The reference is returned only when the method is defined by adding & and calling the method before the method name plus &.

Example 4:

$a = $b; 

When $a and $b are not assignable, that is, the same is the case with the $a=& $b, which is equivalent to an assignment reference.

A copy of the value is copied only when the $a or $b are changed $a

I hope this article will help you with the PHP program design.

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.