一系列子域名网址

时间:2015-02-06 21:58:05

标签: php arrays

我有一系列网址,我想说:如果这些网址中的任何网址是example.com的子网域,则将其添加到另一个数组中。

如果它是php中的example.com的子域,我如何检查每个域?

1 个答案:

答案 0 :(得分:0)

$all_subdomains = array('test.example.com', 'blog.xyz.com');
$matched_subdomains = array();
foreach ($all_subdomains as $subdomain) {
    if (preg_match('/\.example\.com$/i', $subdomain)) {
        $matched_subdomains[] = $subdomain;
    }
}
print_r($matched_subdomains);