php – file_get_contents – 下载文件名中带空格的文件无法正常工作

前端之家收集整理的这篇文章主要介绍了php – file_get_contents – 下载文件名中带空格的文件无法正常工作前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试使用 file_get_contents()功能下载文件. @H_404_1@但是,如果文件的位置是http://www.example.com/some name.jpg,则该功能无法下载.

但是,如果URL是http://www.example.com/some name.jpg,则会下载相同的URL.

我尝试了rawurlencode(),但这会覆盖URL中的所有字符,下载再次失败.

有人可以为此建议一个解决方案吗?

我认为这对你有用:
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") . "\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.

原文链接:https://www.f2er.com/php/136137.html

猜你在找的PHP相关文章