Zend Framework: Get Referrer Page?

后端 未结 3 1809
不知归路
不知归路 2021-01-01 15:41

Is there any way in Zend Framework to grab the url of the page the user visited last?

I don\'t really want to use $_SERVER[\'HTTP_REFERRER\'].

3条回答
  •  感动是毒
    2021-01-01 16:24

    From a controller method:

    $this->getRequest()->getServer('HTTP_REFERER')
    

    basically the same as using $_SERVER, but without causing problems in unit testing.

提交回复
热议问题