Zend Framework 1 had a very simple way of parsing URL routes and setting found params in the $_GET superglobal for easy access. Sure, you could use ->getParam($something) inside
You could use in your controlller:
$paramValue = $this->params()->fromQuery('your_param_here');
Regards