<?php class Route { public function __call($name, $arguments) { echo 'aaa'; } } call_user_func([new Route(), 'abc'], '参数1', '参数2');