I\'m trying to call an object\'s non-static method with call_user_func_array but I\'m not understanding how to formulate the callback. I\'ve found a lot of similar examples
Use the notation [$objectHandle, "methodName"] to dynamically call a non-static method:
[$objectHandle, "methodName"]
call_user_func_array([$this,$method], $arguments);
Live demo