I think this will work for you:
function file_url($url){
$parts = parse_url($url);
$path_parts = array_map('rawurldecode', explode('/', $parts['path']));
return
$parts['scheme'] . '://' .
$parts['host'] .
implode('/', array_map('rawurlencode', $path_parts))
;
}
echo file_url("http://example.com/foo/bar bof/some file.jpg") . "
";
echo file_url("http://example.com/foo/bar+bof/some+file.jpg") . "
";
echo file_url("http://example.com/foo/bar%20bof/some%20file.jpg") . "
";
Output
http://example.com/foo/bar%20bof/some%20file.jpg
http://example.com/foo/bar%2Bbof/some%2Bfile.jpg
http://example.com/foo/bar%20bof/some%20file.jpg
Note:
I'd probably use urldecode
and urlencode
for this as the output would be identical for each url. rawurlencode
will preserve the +
even when %20
is probably suitable for whatever url you're using.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…