'; echo '并且传了参数'; print_r($argument); echo ''; } public static function __callstatic($method,$argument) { echo '你调用了一个不存在的静态方法'.$method.''; echo '并且传了参数'; print_r($argument); echo ''; } } $test = new Test; $test->cry('a,','b','c'); Test::fly(1,2,3);?>