PHP在IE浏览器下载文件乱码问题urlencode

在IE下下载文件名出现乱码,是因为IE的原因,加上URL编码转换则可 如$name = urlencode($name);

那还需要针对IE 写下面的代码。
if(strpos($_SERVER[“HTTP_USER_AGENT”],”MSIE”))
{
$name = urlencode($name);
}

发表评论

电子邮件地址不会被公开。 必填项已用*标注

您可以使用这些HTML标签和属性: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>