Ejemplo n.º 1
0
 public function test()
 {
     self::ABC();
     bar::ABC();
     call_user_func(array('BAR', 'xyz'));
     call_user_func('BAR::www');
     call_user_func(array('self', 'y'));
     call_user_func('self::y');
 }