Lines Matching refs:other
11 function replace($other)
14 $this = $other;
16 print $other->prop;
19 function indirect($other)
22 $this = $other;
23 $result = $this = $other;
28 function retrieve(&$other)
31 $other = $this;
38 $other = new Foo;
39 $other->prop = "World\n";
41 $object->replace($other);
42 $object->indirect($other);
46 $object->retrieve($other);
47 print $other->prop; // shows 'Hello'