|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-11-17 13:47 UTC] mfischer@php.net
[2001-11-17 13:47 UTC] mfischer@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Nov 06 03:00:01 2025 UTC |
<? phpinfo(); class a { function a ($obj) { $this->h = &$obj; return true; } } class b { var $d=1; var $item; function b () { $this->item = new a (&$this); $this->d++; echo $this->d.'//'.$this->item->h->d.'<br>'; } function c () { $this->item = new a (&$this); } } $b = new b (); //$b->c (); //**** $b->d++; echo $b->d.'--'.$b->item->h->d; /* Try to comment and recomment line **** I see there is a bug with that sitution: after finishing of object "b" constructor, link $a->h not linked to "b" object and $a->h is a copy of object "b". I think, this is not right. In constructor $a->h is still link to "b", but after finishing the $a->h is a copy of "b". */