получить один параметр:
$this->getRequest()->getParam('paramkey'[, 'default value']);
получить все параметры:
$this->getRequest()->getAllParams();
или
$this->_getParam('paramkey'[, 'default value']);
$this->_getAllParams();
Я использую Zend Framework, поэтому метод описан в Zend_Action_Contoller:
/**
* Gets a parameter from the {@link $_request Request object}. If the
* parameter does not exist, NULL will be returned.
*
* If the parameter does not exist and $default is set, then
* $default will be returned instead of NULL.
*
* @param string $paramName
* @param mixed $default
* @return mixed
*/
protected function _getParam($paramName, $default = null)
если вы используете CacePHP, вы можете попробовать
$this->params['paramkey'];
, но я не уверен, что он будет работать