Re: [PHP] Parent class

2001-04-02 Thread Yasuo Ohgaki
Did you try $b->a()? It should work. -- Yasuo Ohgaki "Milan Mlynarcik" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Is there way to access paret class from outside of class ??? > I know that to access parent object from within the class I can use code > li

[PHP] Parent class

2001-04-02 Thread Milan Mlynarcik
Is there way to access paret class from outside of class ??? I know that to access parent object from within the class I can use code like this one: a = "OK"; } } class b extends a { function b() { //here I access a class directly a: