How to return a variable by reference in php?

Member

by lizzie , in category: PHP General , a year ago

How to return a variable by reference in php?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

by jasen_gottlieb , a year ago

@lizzie 

In PHP, you can return a variable by reference by using the & symbol before the variable name in both the function declaration and the return statement.


Here's an example:

1
2
3
4
5
6
7
8
9
function &returnVariableByReference(&$var) {
    $var = 'Changed value';
    return $var;
}

$myVar = 'Original value';
$returnedVar = &returnVariableByReference($myVar);

echo $myVar; // Prints 'Changed value'


In this example, the & symbol is used in both the function declaration and the return statement to indicate that the variable should be returned by reference. This means that any changes made to the returned variable will also affect the original variable that was passed to the function.

Related Threads:

How to update reference argument in functions in php?
How to return redirect with compact variable in laravel?
How to pass a variable from python 3 to php?
How to return a value from a function in PHP?
How to return a json object in php laravel?
How to display html output from php return function?