“php get current domain” Código de respuesta

php get current domain

// Warning: This can be manipulated by hackers!
// If this is problematic, store the domain in a config file

$currentDomain = $_SERVER['SERVER_NAME'];
wp-overwatch.com

php get domain name from url

parse_url('http://www.website.com/hey.php', PHP_URL_HOST);
Friendly Hawk

php get domain from url

$url = 'http://google.com/dhasjkdas/sadsdds/sdda/sdads.html';
$parse = parse_url($url);
echo $parse['host']; // prints 'google.com'
Alberto Peripolli

how to detect intial domain using php\

$_SERVER['REQUEST_URI']
Ankur

Respuestas similares a “php get current domain”

Preguntas similares a “php get current domain”

Más respuestas relacionadas con “php get current domain” en PHP

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código