How to parse a URL and get URL host in PHP

2 Answers

0 votes
$url = "http://www.collectivesolver.com/17527/how-to-use-this-class-pointer-in-c";
 
$host =  parse_url($url, PHP_URL_HOST);

echo $host;
 
/*
run:
  
www.collectivesolver.com
   
*/

 



answered Mar 31, 2018 by avibootz
0 votes
function getHost($url) {
    return parse_url($url)["host"];
}

echo getHost("https://www.collectivesolver.com/32506/how-to-rename-a-file-in-c");




/*
run:

www.collectivesolver.com

*/

 



answered Jul 12, 2020 by avibootz

Related questions

2 answers 288 views
1 answer 83 views
1 answer 85 views
2 answers 272 views
1 answer 286 views
1 answer 385 views
3 answers 464 views
464 views asked Apr 21, 2014 by avibootz
...