“Holen Sie sich URL -Link in PHP” Code-Antworten

PHP erhalten Sie URL -Pfadname

parse_url( $_SERVER[ 'REQUEST_URI' ], PHP_URL_PATH );
Yoshkinawa

So erhalten Sie den Link der aktuellen Seite in PHP

<?php  
    if(isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on')   
         $url = "https://";   
    else  
         $url = "http://";   
    // Append the host(domain name, ip) to the URL.   
    $url.= $_SERVER['HTTP_HOST'];   
    
    // Append the requested resource location to the URL   
    $url.= $_SERVER['REQUEST_URI'];    
      
    echo $url;  
  ?> 
Wild Weasel

Holen Sie sich URL -Link in PHP

actual_link = (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on' ? "https" : "http") . "://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]";
adriendums

Holen Sie sich URL mit PHP

$actual_link = (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on' ? "https" : "http") . "://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]";
Smiling Stag

Ähnliche Antworten wie “Holen Sie sich URL -Link in PHP”

Fragen ähnlich wie “Holen Sie sich URL -Link in PHP”

Weitere verwandte Antworten zu “Holen Sie sich URL -Link in PHP” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen