Programing

PHP에서 현재 URL 경로 가져 오기

crosscheck 2020. 8. 30. 07:42
반응형

PHP에서 현재 URL 경로 가져 오기


현재 요청의 URL에서 경로를 가져와야합니다. 예를 들어 현재 URL이 다음과 같은 경우 :

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

나는 이것을 원할 것이다 :

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

당신은 원합니다 $_SERVER['REQUEST_URI']. 에서 워드 프로세서 :

'REQUEST_URI'

이 페이지에 액세스하기 위해 제공된 URI. 예를 들어 '/index.html'.


그것은해야한다 :

$_SERVER['REQUEST_URI'];

살펴보기 : PHP에서 전체 URL 가져 오기


<?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
}
?>

참고 URL : https://stackoverflow.com/questions/16198790/get-current-url-path-in-php

반응형