Get the current URL address and $_get get parameters

Source: Internet
Author: User

With this method, you can get the arguments that get passed in without using $_get[]. You can also get the current URL

1  Public functionGetcurrenturl () {2         $pageURL= ' http ';3 4         if($_server["HTTPS"] = = "on") {5             $pageURL. = "S";6         }7         $pageURL.= "://";8 9         if($_server["Server_port"]! = "80") {Ten             $pageURL.=$_server["SERVER_NAME"]. ":" .$_server["Server_port"].$_server["Request_uri"]; One}Else { A             $pageURL.=$_server["SERVER_NAME"].$_server["Request_uri"]; -         } -         return $pageURL; the     } -     /** - * @param $key - * @return Mixed + * $_get[] -      */ +      Public functionGETP ($key) { A         $url=$this-Getcurrenturl (); at         //$url = UrlDecode ($STR); -         $URLARR=Explode(‘?‘,$url); -         $queryParam=$URLARR[1]; -         Parse_str($queryParam); -         return$$key; -}

The first method is to get a URL. The second method is to get the parameters that are passed in the URL address with get.

Get the current URL address and $_get get parameters

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.