I want to do this:
class MyClass {
var $array1 = array(3,4);
var $array2 = self::$array1;
}
and $array2 doesn't work.
Do you have a solution/trick to make a class property equal to another class property?
Thanks.
|
|
|
|
|
|
|
According to the
What you COULD do is:
The function
|
|||
|
|
|
|
I'm new to PHP, but the answer from Paolo seems to be just initializing the values to be the same in the constructor, but that doesn't actually make both variables reference the same content. How about this:
With the addition of the reference, both class property values change when either is changed. Am I missing something? |
||||||
|
|
|
Both your answers, Paolo and notruthless, are excellent, thank you very much! If I want the two properties to keep in sync:
If I want the two arrays to have identical values initially but then want to modify them individually, I remove the '&':
|
||||
|