5

我想知道如何创建一个 PHP IF 语句来检测用户是否正在加载/在某个 URL 上。就我而言,它是:

www.design.mywebsite.com

IF 语句需要覆盖整个子域,例如,还必须检测 URL:

www.design.mywebsite.com/filename.php

建立 IF 语句后,我想添加一个 PHP 变量。所以它可能会帮助其他人,让我们称之为:

$myvariable = "Hey there! You're on my subdomain";

所以总结一下: 最终的代码应该是这样的......

<?php
  if //Code to detect subdomain// {
    $myvariable = "Hey there! You're on my subdomain";
  }
?>
4

1 回答 1

14

一个简单的解决方案是

$host = "baba.stackoverflow.com"; // Your Sub domain

if ($_SERVER['HTTP_HOST'] == $host) {
    echo "Hello baba Sub Domain";
} else {
    echo "not baba domain";
}

你也可以使用 parse_url http://php.net/manual/en/function.parse-url.php如果你有URL

$url = "http://baba.stackoverflow.com/questions/10171866/detect-if-a-user-is-on-a-subdomain-and-then-add-a-variable-using-php";
$info = parse_url($url);
if ($info['host'] == $host) {
    echo "Hello baba Sub Domain";
} else {
    echo "not baba domain";
}

请替换$url$_GET;

于 2012-04-16T10:17:28.627 回答