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']
.
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']
.
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
From a controller method:
basically the same as using $_SERVER, but without causing problems in unit testing.
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')