The most common way to pass a variable by reference in PHP is by using the & operator.
For example:
$a = “Hello”;
$b = &$a;
echo $b; // prints “Hello”
Now if you change the value of $a, the value of $b will also change:
$a = “Goodbye”;
echo $b; // prints “Goodbye