打开attachment.php文件,查找:
header('Cache-control: max-age=31536000');
header('Expires: ' . gmdate("D, d M Y H:i:s", TIMENOW + 31536000) . ' GMT');
header('Last-Modified: ' . gmdate('D, d M Y H:i:s', $attachmentinfo['dateline']) . ' GMT');
在其后添加:
if (!isset($isIE))
{
static $isIE;
$isIE = iif(is_browser('ie'), true, false);
}
if ($isIE)
{
$attachmentinfo[filename] = iconv("UTF-8","GBK",$attachmentinfo[filename]);
}
若没有iconv库,但是Linux主机,可以将后半部分替换为:
if ($isIE)
{
$cmd = "echo '$attachmentinfo[filename]' | iconv -f UTF-8 -t GBK";
$attachmentinfo[filename] = shell_exec($cmd);
}
li3p
可以更进一步,根据客户端编码来调整iconv的参数。
不然Big5或者日韩语系还会有问题。
007pig
用不着这么麻烦:)
请参考:
http://www.vbulletin-chinese.com/forum/showthread.php?goto=newpost&t=529
平生一笑
这样是可以,不过对付超过40个字符的附件时,同样会出现问题