PHP REGEX: Get domain from URL

前端 未结 9 1925
情歌与酒
情歌与酒 2020-12-08 11:05

What I want


I want to get from a URL the domain part so from http://example.com/ -> example.com

9条回答
  •  青春惊慌失措
    2020-12-08 11:12

    Best way i think:

    preg_match('/(http(|s)):\/\/(.*?)\//si',  'http://www.example.com/page/?bla=123#!@#$%^&*()_+', $output);
    // $output[0] ------------>  https://www.example.com/
    

提交回复
热议问题