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

后端 未结 4 1588
情话喂你
情话喂你 2021-01-05 08:10

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. F

相关标签:
4条回答
  • 2021-01-05 08:18

    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.

    0 讨论(0)
  • 2021-01-05 08:20

    Couldn't you use the php function(s) explode("#",$_SERVER['REQUEST_URI'])? Maybe I've misunderstood the question.

    0 讨论(0)
  • 2021-01-05 08:23

    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.

    0 讨论(0)
  • 2021-01-05 08:27

    You cannot use:

    explode("#",$_SERVER['REQUEST_URI'])
    

    because when you call $_SERVER['REQUEST_URI'], you never get the word after #. For example your link www.example.com/about#test, and when you call $_SERVER['REQUEST_URI'], you just get www.example.com/about.

    0 讨论(0)
提交回复
热议问题