Zend Framework: Get Referrer Page?

后端 未结 3 1783
不知归路
不知归路 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:14

    If you want to do it in Module.php?

    I have find a small solution

    $headers = new \Zend\Http\PhpEnvironment\Request;

    $headers->getServer('HTTP_REFERER')

提交回复
热议问题