PHP:导出中文和西班牙语数据excel
我想通过PHP将mysql数据导出到excel。我正在使用以下代码进行操作。
$filename = "contact_data_" . @date('Ymd') . ".xls";
header("Content-Disposition: attachment; filename=\"$filename\"");
header("Content-Type: application/vnd.ms-excel");
这对于英文字符来说效果很好,但是中文字符看起来很奇怪。 例如,我们将快捷与您的联系在生成的 Excel 中显示为 æˆ'ä»Ø将尽å¿
我也尝试过将字符集更改为UTF-8,但没有帮助。
非常感谢。
I want to export mysql data to excel through PHP. I am doing with following code.
$filename = "contact_data_" . @date('Ymd') . ".xls";
header("Content-Disposition: attachment; filename=\"$filename\"");
header("Content-Type: application/vnd.ms-excel");
This works fine with English characters but Chinese characters appear weird.
For example 我们将尽快与您联系 appear as 我们将尽快与您è”ç³» in generated excel.
I have tried with changing charset to UTF-8 also but didn't help.
Many thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这个宝贝可以导出mysql到excel吗?我不这么认为。它绝对没有发挥魔法,再检查一次,朋友。
This baby can export mysql to excel? I don't think so. It's definitely not doing the magic, check again, pal.