Answer the question
In order to leave comments, you need to log in
Is it correct to use the following calls?
error_reporting(E_ALL);
class Test {
public function t2()
{
$this->t();
}
public static function t()
{
echo 1;
}
}
$test = new Test();
$test->t2();
$test->t();
Test::t();
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question