The parse_url() function is inbuilt of PHP. you use parse_url() to get domain name and part, parse_url() function returned associative array There will be at least one element within the array. In this list, possible keys are: scheme-host, port, user, transfer, route, query-after the question mark?
Syntax:
parse_url( $url, $component = -1 )
Example 1
Below examples pass single parameters the use of parse_url() function in PHP:
Example 2
Below examples pass two parameters the use of parse_url() function in PHP:
Note: In above example first parameters is URL and second parameters to retrieve a specific URL in the form of string( PHP_URL_SCHEME, PHP_URL_HOST, PHP_URL_PORT, PHP_URL_USER, PHP_URL_PASS, PHP_URL_PATH, PHP_URL_QUERY or PHP_URL_FRAGMENT )