我需要使用php提取以下网址:" http://www.website.com/profile#username"。我尝试的所有方法都返回" http://www.website.com/profile"
答案 0 :(得分:2)
只需使用parse_url()
即可$url = 'http://www.website.com/profile#username';
$parse = parse_url($url);
print $parse['host']; // prints 'website.com'