Jump to content

Returning by reference


colin-java

Recommended Posts

Hi, I understand passing by reference eg..

 

function f(&$param)

{

...

}

 

But I can't properly grasp returning by reference when the & is before the function.

 

Does it have anything to do with this:

$a = 1;

$b = &$a;

So now $a and $b basically reference the same value.

 

PS, I have not got to classes yet, so please don't use them in any explanations.

Thanks for any help.

 

Link to comment
Share on other sites

if you give a function an &$variable, then whatever is done to that variable within the function is relegated back to the variable you put as the argument.  For instance

function addOne(&$a) {
     $a += 1;
}
$b = 1;
echo $b;   // Prints 1
addOne($b);
echo $b;  // Prints 2

Link to comment
Share on other sites

Thanks, I get that, but thats not what I'm asking...

 

If I have a function:

 

function &func($a)

{

....

}

 

Whats going on here? I think I have to return something, I'm not sure.

Is it somehow related to this..

 

##############################

$a = 1;

$b = &$a;

// so now $a and $b reference the same variable

##############################

 

Thanks again for any help

Link to comment
Share on other sites

Thanks, I get that, but thats not what I'm asking...

 

If I have a function:

 

function &func($a)

{

....

}

 

Whats going on here? I think I have to return something, I'm not sure.

Is it somehow related to this..

 

##############################

$a = 1;

$b = &$a;

// so now $a and $b reference the same variable

##############################

 

Thanks again for any help

 

See: http://php.net/manual/en/language.references.return.php

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.