删除基于子域的重复项

时间:2014-05-23 16:25:09

标签: php

一个小的php项目要求我删除基于子域的重复URL,因为每个url方案都有一个或多个子域。我需要你的php大师一些关于如何做到这一点的方向。我不是要求现成的代码,而是一些指导。

http://en.example.com
http://usa.en.example.com

我使用以下代码来解析子域。我想整合这段代码。谢谢

$url = 'http://en.example.com';

$parsedUrl = parse_url($url);

$host = explode('.', $parsedUrl['host']);

$subdomain = $host[0];
echo $subdomain;

只想提取:

http://subdomain1.example.com/spo/4444713932
http://subdomain2.example.com/spo/4474641611
http://subdomain3.example.com/spo/4410408197

来自此列表

 http://subdomain1.example.com/spo/4444713932
 http://subdomain1.example.com/spo/4415697470
 http://subdomain1.example.com/spo/4446009678
 http://subdomain2.example.com/spo/4474641611
 http://subdomain2.example.com/spo/4477100572
 http://subdomain3.example.com/spo/4388005447
 http://subdomain3.example.com/spo/4410408197

0 个答案:

没有答案