我正在尝试使用
但是,如果文件的位置是http://www.example.com/some name.jpg,则该功能无法下载.
file_get_contents()
功能下载文件.
但是,如果文件的位置是http://www.example.com/some name.jpg,则该功能无法下载.
但是,如果URL是http://www.example.com/some name.jpg,则会下载相同的URL.
我尝试了rawurlencode()
,但这会覆盖URL中的所有字符,下载再次失败.
有人可以为此建议一个解决方案吗?
我认为这对你有用:
原文链接:https://www.f2er.com/php/136137.htmlfunction 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") . "\n"; echo file_url("http://example.com/foo/bar+bof/some+file.jpg") . "\n"; echo file_url("http://example.com/foo/bar%20bof/some%20file.jpg") . "\n";
产量
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
注意:
我可能会使用urldecode和urlencode,因为每个url的输出都是相同的. rawurlencode将保留偶数,可能适用于您正在使用的任何URL.