I have a question that how to get the class name, which is initialized by other class or function.
For example:
Class a
{
Function a(){}
}
Class b
{
Function b()
{
$a= new a;
...
}
}
How can I get class b's name in a?
Best regards,
Yang Shiqi

