对于GBK版phpwind在用chrome下载中文名附件时,附件名称全是乱码,其原因就是没有强制编码
记录一下解决办法
在job.php中
在
header("Content-Disposition: $attachment; filename=\"{$attach['name']}\"");
下面,把
header("Content-type: $ctype;");
修改成
header("Content-type: $ctype;charset=$db_charset");
强制编码,这样下载就正常了