Когда я выполняю / mycontroller / search, он показывает только «/ mycontroller», но как мне получить «/ mycontroller / search», когда я нахожусь в методе search
, как мне получить «/ mycontroller / other», когда я нахожусьв other
метод.
class Mycontroller extends Zend_Controller_Action
{
private $url = null;
public function otherAction() {
$this->url .= "/" . $this->getRequest()->getControllerName();
echo $this->url; // output: /mycontroller
exit;
}
public function searchAction() {
$this->url .= "/" . $this->getRequest()->getControllerName();
echo $this->url; // output: /mycontroller
// expect: /mycontroller/search
exit;
}
}