Code: Select all
public function __call($method, $params) {
$rerout_method = $this->route . '_' . $method; #sets the name of the new method to be called
#$this->method_extra_params[$method] contains the extra parameters for the method
# problem...
}how do I do something like
$rerout_method(passed in params + additional params) ?
even when I try something like
Code: Select all
$rerout_method($params);anyone have any ideas on this ?
or possibly point me towards some keywords to search up on
-thanks