Re: [PHP] PHP5 and static attributes
* 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
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 ---