Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

PHP Zend Framework - How to Get Request URI Fragment from Request Object?

Say e.g. i have a URI http://127.0.0.1/somecontroller/someaction#12345 that takes me to the someAction() action of the someController controller. From there, i am able to retrieve the Request object via $this->getRequest().

i am also able to retrieve various information regarding the URI from the Request object.

But, how can i retrieve the fragment (i.e. the "12345" part after the # in the e.g.)? Neither getRequestUri() nor getParams() turn up the fragment part.

Thanks!

like image 575
Edwin Lee Avatar asked Feb 02 '10 01:02

Edwin Lee


2 Answers

The fragment part of the URL is never sent to the server via GET requests (or any kind of HTTP request for that matter), the only way you can get it is if you write a Javascript snippet that parses the URL and sends the fragment back to the server via Ajax for instance.

This can't be done with PHP alone.

like image 52
Alix Axel Avatar answered Oct 23 '22 17:10

Alix Axel


According to HTTP protocol specification, the fragment part is ignored. However, browsers do support redirects with hash.

If you generate hashes automatically, you may pass the id as the request parameter: http://127.0.0.1/somecontroller/someaction/id/12345/#12345

and then:

$this->getRequest()->getParam('id')

But this will hot handle the case with the hash only, e.g. when user enters the URL manually.

like image 33
takeshin Avatar answered Oct 23 '22 17:10

takeshin