Re: [PHP] Passing Multilayered Objects, by Reference, to Independent Sub-Objects

2001-03-15 Thread Andrew Immerman
must be fully defined and loaded, e.g., one can not establish a reference to "$this" within the constructor of that object -- because "$this" is not fully defined when the constructor is called. Signed, -Andrew Immerman -- PHP General Mailing List (http://www.php.net/) To

[PHP] Passing Multilayered Objects, by Reference, to Independent Sub-Objects

2001-03-15 Thread Andrew Immerman
$this->nVal = 0; } function Test () { } } $oTest0 = new Test0_t(); $oTest0->oTest1->Test(); echo("2:[".$oTest0->oTest2->nVal."]"); ?> Thank you, -Andrew Immerman -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]