Zend Framework: Get Referrer Page?

后端 未结 3 1807
不知归路
不知归路 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 15:58

    MWOP has put a good post here showing you how to get HTML headers (including referer).

    http://zend-framework-community.634137.n4.nabble.com/Referer-td3007321.html

    // In an action method of a controller
    $request = $this->getRequest();
    $request->getHeader('referer');
    

提交回复
热议问题