Are PHP variables passed by value or by reference?
|
|
|
It's by value according to the PHP Documentation.
|
|||
|
|
|
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 the swap function to:
in order to pass by reference. |
|||||
|
|
@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. |
|||||||||||||||||||
|
|
http://www.php.net/manual/en/migration5.oop.php
|
|||
|
|
|
In PHP, By default objects are passed as reference copy to a new Object. See this example.............
Now see this..............
Now see this ..............
i hope you can understand this. |
|||||
|
|
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...) |
||||
|
|
|
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. |
|||
|
|
|
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
|
|||
|
|
|
Objects are passed by reference in PHP 5 and by value in PHP 4. Variables are passed by value by default! Read here: http://www.webeks.net/programming/php/ampersand-operator-used-for-assigning-reference.html |
|||
|
|
Attributes are still modifiable when not passed by reference so beware. Output: SwapObjects: b, a SwapValues: a, b |
|||
|
|
|
Depends on the version, 4 is by value, 5 is by reference. |
|||||||
|
