Returning by reference is useful when you want to use a function to find to which variable a reference should be bound. Do not use return-by-reference to increase performance. The engine will automatically optimize this on its own. Only return references when you have a valid technical reason to do so.

whats does the bolded mean?

does it refer to something like

public function &getHellos() {
    $sql = 'SELECT id, greeting FROM #__hello';
    $data = $this->_getList($sql);
    return $data;
}

where i am not binding to any variable?

link|improve this question

77% accept rate
feedback

3 Answers

Na. You can't pass a reference to a function name. When passing a variable by reference, if you change it's value in your function, it's value will also be changed outside of the function.

For example :

function test(&$var) {
    $var = strtolower($var);
}

function second_test($var) {
    $var = strtolower($var);
}

$var = 'PHP';

second_test($var);
echo $var;

echo "\r\n";

test($var);
echo $var;

This will display :

PHP
php

As the second_test method doesn't have the variable passed by reference, it's updated value is only updated inside the function. But the test method as the variable passed by reference. So it's value will be updated inside and outside of this function.

link|improve this answer
@dmathieu You can in fact use byref in front of a function. It's perfectly legal PHP. Although since the introduction of PHP5, it's been discouraged. – Asaph Oct 5 '09 at 14:29
Well providing a deprecated technique isn't what I'd call a good advice ;) – Damien MATHIEU Oct 5 '09 at 14:37
1  
It's not deprecated in any way. Also, its use is only discouraged in situations where an object is being returned by reference, because in PHP5 it's done by default. – Ignas R Oct 5 '09 at 17:13
It was used in PHP 4 as a hack to work around shortcomings of the engine. In PHP 5 this isn't needed. That leaves very few (if any) legal cases for using it, but it's not deprecated per se. – troelskn Oct 5 '09 at 17:57
@all, thanks for your replies. but i still want to ask: if i am not returning a class variable, in this case just a function variable, am i right to say i shld not use this (return by reference) because its already done by the engine? – iceangel89 Oct 6 '09 at 3:16
show 2 more comments
feedback

I believe it's referring to byref arguments not functions. For example this:

function doStuff(&$value1, &$value2) {
    ...
}

is an acceptable use of byref because the doStuff() function has to return 2 values. If it only doStuff() only needed to affect one value, it would be more elegant to have the function return it, by value, of course.

link|improve this answer
feedback

The bolded part means it's useful if you want to keep a reference to a variable, instead of the value of this variable.

The example about returning references, on php.net, explains it pretty well, IMO.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.