<?php class A { private function z() { echo __METHOD__; } public function x() { $callback = [[new $this(), "z"], []]; call_user_func_array("call_user_func_array", $callback); } } (new A())->x();
You have javascript disabled. You will not be able to edit any code.