PHP » GoLang |
login |
register |
about
|
parse_url(PHP 4, PHP 5, PHP 7) parse_url — Parse a URL and return its components DescriptionThis function parses a URL and returns an associative array containing any of the various components of the URL that are present. The values of the array elements are not URL decoded. This function is not meant to validate the given URL, it only breaks it up into the above listed parts. Partial URLs are also accepted, parse_url() tries its best to parse them correctly. Parameters
Return Values
On seriously malformed URLs, parse_url() may return
If the
If the Changelog
Examples
Example #1 A parse_url() example
<?php The above example will output: array(8) { ["scheme"]=> string(4) "http" ["host"]=> string(8) "hostname" ["port"]=> int(9090) ["user"]=> string(8) "username" ["pass"]=> string(8) "password" ["path"]=> string(5) "/path" ["query"]=> string(9) "arg=value" ["fragment"]=> string(6) "anchor" } string(4) "http" string(8) "username" string(8) "password" string(8) "hostname" int(9090) string(5) "/path" string(9) "arg=value" string(6) "anchor"
Example #2 A parse_url() example with missing scheme
<?php The above example will output: array(3) { ["host"]=> string(15) "www.example.com" ["path"]=> string(5) "/path" ["query"]=> string(17) "googleguy=googley" } Notes
See Also
|
more
Recently updated
more
Most requested
|