! When declaring a function, the function name is preceded by an ampersand?

Source: Internet
Author: User
Help! When declaring a function, the function name is preceded by an & amp; what does it mean ??? This post was last edited by zx11307 from 2013-12-2417: 57: 24 as described in: for example, function & nbsp; & amp; ret_ref () {$ varphp; return & nbsp; $ var;} $ v & amp; ret_ref (); the function is preceded by & a for help! When declaring a function, the function name is preceded by an ampersand ???

This post was last edited by zx11307 at 17:57:24 on

As described in:
For example

Function & ret_ref (){
$ Var = "php ";
Return $ var;
}
$ V = & ret_ref ();

What is the difference between "with" and "Without" in front of a function? Why add one &

Share: More


------ Solution --------------------
Indicates that a reference can be returned.
However, this example cannot be shown.
Function & ret_ref (){
Static $ var;
If (empty ($ var) $ var = "php ";
Return $ var;
}
$ V = & ret_ref ();
Echo $ v; // php
$ V = 'aaa ';
Echo ret_ref (); // aaa

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.