Posted by CorfuVBProgrammer on 12/29/06 11:59
New Question
if i like to use the instance from other method into the class how can
i do that ? ? ?
example:
class class_a
{
public function method_a()
{
}
}
class class_b
{
private $objInstance;
public function __construct()
{
$this->objInstance = new class_a();
}
public function method_t()
{
how to use the $objInstance methods into this method ? ? ?
}
}
thanks a lot
Navigation:
[Reply to this message]
|