我该如何使用所有子域?

时间:2019-05-04 14:02:41

标签: php

如果我具有以下功能,如何使它可用于2个或更多子域?

根域具有几个子域,例如subdomain.example.com和subdomains2.example.com,但是我希望这段代码仅适用于这两个子域,我该怎么做?

function denyNonOther($url)
{
    $strAllow = 'subdomain.example.com'; 
    $strBase  = getBaseUrl($url);
    if(strpos($url, $strAllow) === false)
    {
        return true;
    }
}

1 个答案:

答案 0 :(得分:0)

只需将其放入文件中,并将其包含在您的主域和其他子域中即可。