I was wondering if someone may know an alternative to the PHP 5.6.x and higher ...
operator (or splat operator I believe its called).
What i'm currently doing in my PHP 7 version is:
$this->callAction(
...explode('@', $this->routes["authControllers"][$this->routes["uri"][$uri]])
);
The callAction()
function takes 2 parameters callAction($controller, $action)
but now I need to downgrade the code to PHP 5.4.17.