我正在使用这样的代码从入站链接中获取 URL:
$inbound_url = $_SERVER['HTTP_REFERER'];
//then do some stuff writing the url to a database table, but....
//ONLY IF the url doesn't already exist in the table
假设链接来自同一网站,同一网页,但仅在 www 不同。所以我得到了这个:1)http://www.mysite.com/page.html 2)http://mysite.com/page.html
这在我的表中出现了两次,因为一个有 www 而一个没有。
有没有办法解析 $_SERVER['HTTP_REFERER']; 的结果 要么:1)添加www。它丢失的地方,或者 2) 删除 ...http://...www 的所有内容。或 ..http://
一如既往地提前感谢。