I had a Java developer new to PHP ask me this question the other day, so I thought I'd document the answer here.
Question: are PHP variables passed by value or by reference?
|
|
I had a Java developer new to PHP ask me this question the other day, so I thought I'd document the answer here. Question: are PHP variables passed by value or by reference?
|
|||
|
|
|
|
It's by value according to the PHP Documentation.
|
||
|
|
|
|
You can do it either way. put a '&' symbol in front and the variable you are passing becomes one and the same as its origin. ie: you can pass by reference, rather than making a copy of it. so
|
||
|
|
|
|
It seems a lot of people get confused by the way objects are passed to functions and what pass by reference means. Object variables are still passed by value, its just the value that is passed in PHP5 is a reference handle. As proof:
Outputs:
To pass by reference means we can modify the variables that are seen by the caller. Which clearly the code above does not do. We need to change swap to:
in order to pass by reference. |
||
|
|
|
|
Variables containing primitive types are passed by value in PHP5. Variables containing objects are passed by reference. There's quite an interesting article from Linux Journal from 2006 which mentions this and other OO differences between 4 and 5. |
||
|
|
|
|
http://www.php.net/manual/en/migration5.oop.php
|
||
|
|
|
|
@Karl In PHP5 variables are by default passed by value and objects are by default passed by reference. Either can be optionally passed by reference using the & operator. However, most older PHP functions will not alter a primitive even if you pass a reference...
If you do try to pass a value as a reference it will throw a warning. It is up to the function to decide to work on the value or reference. |
||
|
|
|
|
Can you point to some documentation that says that? from everything I've seen, that's not the case... |
||
|
|
|
|
PHP variables are assigned by value, passed to functions by value, and when containing/representing objects are passed by reference. You can force variables to pass by reference using an & Assigned by value/reference example:
would output "var1: test, var2: final test, var3: final test". Passed by value/reference exampe:
would output: "var1: foo, var2 BAR". Object passed by reference exampe:
Would output: "FOO" (that last example could be better probably...) |
|||
|
|
|
|
Depends on the version, 4 is by value, 5 is by reference. |
||
|