Class and subclass

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi,

i have a class A with some properties.
i have a class B with several public functions (i.e : Render())

i would like to do something like that :

class B()
{
B()
{
}

public function Render()
{
 ...
}
}

class A
{
private $myotherclass;

A()
{
 $this->myotherclass = new classB();
}

public function test()
{
 $this->myotherclass->Render();
}
}

however, i'm not able to access to ->Render() of class B from Class A
property. Where could be the problem ?

--
Alain
------------------------------------
Windows XP SP2
PostgreSQL 8.1.4
Apache 2.0.58
PHP 5

[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux