PHP Code:
function url_implode($parsed)
{
$output = '';
if (isset($parsed['scheme']))
$output .= "$parsed[scheme]://";
if (isset($parsed['user']) && isset($parsed['pass']))
$output .= "$parsed[user]:$parsed[pass]@";
elseif (isset($parsed['user']))
$output .= "$parsed[user]@";
if (isset($parsed['host']))
$output .= rawurlencode(rawurldecode($parsed['host']));
if (isset($parsed['path']))
$output .= "$parsed[path]";
if (isset($parsed['query']))
$output .= '?' . urlencode(urldecode($parsed['query']));
if (isset($parsed['fragment']))
$output .= "#$parsed[fragment]";
return $output;
}
This function will take an parse_url array, and return a URL.
You may be wondering what the point of it is, as (normally) if you have a parse_url array, you have the URL. I was creating a PHP script to grab news from a site (using preg_match_all()) and produce an Atom feed. An Atom feed is XML, therefore must be well-formed, so all the parts of a URL must be properly escaped.