Hi!
When I have a function like this:
When I assign that function to a variable, do I still have to do:PHP Code:function &get_something
{
//…
return $something; //return a reference
}
or can I simply do:PHP Code:$var =& get_something();
?PHP Code:$var = get_something();





Bookmarks