php to get the current page URL address and parameters

Source: Internet
Author: User
Keywords Network programming PHP tutorial
Tags .url address can find check domain domain name domain name query echo

php tutorial to get the current page url address and parameters To get the full address of the current page we have to go through many operations such as http or https tutorial php file and path host domain name query parameters finally became.
Get agreement - http
The url protocol can be read in the $ _server ['server_protocol'] variable.
* /

echo $ _server ['server_protocol'];

/ *
If you check the value, you can find that not just http or https, but such a string: http / 1.1

* /

$ protocol = strpos (strtolower ($ _ server ['server_protocol']), 'https') === false? 'http': 'https';

/ *
Get Host Domain Name * /

$ host = $ _server ['http_host'];

/ *
Use $ _server ['script_name'] to get the php file and path except the domain name

* /

$ script = $ _server ['script_name'];


// Get the query parameters after?

$ params = $ _server ['query_string'];


//Method Two
$ uri = $ _server ['request_uri'];

// Here to see a complete access to the current url instance

$ protocol = strpos (strtolower ($ _ server ['server_protocol']), 'https') === false? 'http': 'https';
$ host = $ _server ['http_host'];
$ script = $ _server ['script_name'];
$ params = $ _server ['query_string'];
$ currenturl = $ protocol. ': //'. $ host. $ script. '?' $ params;
echo $ currenturl;

Related Article

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.