Хабр Курсы для всех
РЕКЛАМА
Практикум, Хекслет, SkyPro, авторские курсы — собрали всех и попросили скидки. Осталось выбрать!
class test {
public function method($a) {
echo $a;
}
}
$test = new test;
$test->method('in method');
class test {
public static function stat() {
echo 'static';
}
}
$class = 'test';
$class::stat();class test {
public function method($a)
{
echo $a;
}
}
$test = new test();
$test->method('in method');
class test {
public function method($a)
{
echo $a;
}
}
$test = new test;
$test->method('in method');
Песочница для PHP