Hi,
i'm wondering if there is something like $this-> to call a method inside
another method of the same class without using the classname in front.
I actually use
class TEST
{
function func1()
{
}
function func2()
{
TEST::func1();
}
}
is there something i can use instead of TEST so that i don't need to change
every line when i rename the class?
Thx in advance,
Chris
i'm wondering if there is something like $this-> to call a method inside
another method of the same class without using the classname in front.
I actually use
class TEST
{
function func1()
{
}
function func2()
{
TEST::func1();
}
}
is there something i can use instead of TEST so that i don't need to change
every line when i rename the class?
Thx in advance,
Chris
Comment