vote up -2 vote down star

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?"

flag
Can you clarify your question? – Gumbo Oct 4 at 22:04
Yes- if I create a new variable z which is a reference to variable x, changing the value of z changes x to the same value, right? And the opposite is true-- changing the value of x changes the value of z, correct? Why is this not true for classes that are formed by reference? If I create a new class called ChildClass by extending ParentClass, and then change ChildClass, ParentClass is unchanged! This does not make sense when comparing to the first example based on reference variables. – Grant Oct 4 at 23:44

2 Answers

vote up 1 vote down

You are confusing subclassing (extending) with references.

This is extending, which is what you described:

class ParentClass{ };
class ChildClass extends ParentClass { };

$parent = new ParentClass;
$child = new ChildClass;

$parent->setName('Dad');
$child->setName('Daughter');

echo $parent->name;
// Dad

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.

$parent = new ParentClass;
$child = new ChildClass;

$childRef = $child; // $childRef isn't a copy, it's a reference to $child.
$childRef->setName('Daughter');

echo $child->name;
// Daughter
// Notice that it's the same as if you had called setName( ) on $child itself;
link|flag
vote up 0 vote down

References in PHP are a weird construct. $a =& $b; makes $a a reference to $b. This means that whenever the value of $b changes, $a will reflect that change. Or put differently, $a will always have the same value as $b.

In PHP 4, objects would be implicitly cloned when assigning them. Eg. if $b is an object, the code $a = $b would create a new object, which is a copy of $b, and assign it to $a. This is rather a problem, since you usually want reference semantics on objects. To get around this, you had to use references when dealing with objects. Since PHP 5 this has changed, so today there are very few cases (if any) where you should use references.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.