Get current URL path in PHP

2019-01-07 19:13发布

问题:

I need to get the path from the URL of the current request. For example, if the current URL is:

"http://www.example.com/example/test/hi.php?randomvariable=1"

I would want this:

"/example/test/hi.php?randomvariable=1"

回答1:

You want $_SERVER['REQUEST_URI']. From the docs:

'REQUEST_URI'

The URI which was given in order to access this page; for instance, '/index.html'.



回答2:

it should be :

$_SERVER['REQUEST_URI'];

Take a look at : Get the full URL in PHP



回答3:

                <?php
                function current_url()
                {
                    $url      = "http://" . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
                    $validURL = str_replace("&", "&amp", $url);
                    return $validURL;
                }
                //echo "page URL is : ".current_url();

                $offer_url = current_url();

                ?>



                <?php

                if ($offer_url == "checking url name") {
                ?> < p > hi this is manip5595 < /p>

                <?php
                }
                ?>


回答4:

$_SERVER['REQUEST_URI'] will give you the path after the domain name. In your example "/example/test/hi.php?randomvariable=1"



标签: php url