In PHP, reference variables modify both when 1 or the other is changed.
New classes are formed by implicit references, but modifying the extension does not modify the parent.
Is this by PHP's design, or are they different kinds of "references?"
|
|
|||||
|
|
|
You are confusing subclassing (extending) with references. This is extending, which is what you described:
Is that, in fact, what you wanted to be describing? Passing variables/classes by reference is a completely different conversation and isn't really connected to the idea of subclassing/extending a class. It works more like this.
|
||
|
|
|
|
References in PHP are a weird construct. In PHP 4, objects would be implicitly cloned when assigning them. Eg. if |
||
|
|