Re: [PHP] PHP5 and static attributes

2004-05-12 Thread Curt Zirzow
* Thus wrote Rudy Metzger ([EMAIL PROTECTED]): > Dear all, > > I have a problem with 'referencing' static attributes. I have the > following class tree. > > // --- CLASS A - > class A > { > protected static $myInstance; > } > > // --- CLASS B ---

[PHP] PHP5 and static attributes

2004-05-12 Thread Rudy Metzger
Dear all, I have a problem with 'referencing' static attributes. I have the following class tree. // --- CLASS A - class A { protected static $myInstance; } // --- CLASS B -- class B extends class A { } // --- CLASS C ---