当我尝试在 Csv 文件中插入波兰语字符时。波兰语字符自动转换为它们各自的 htmlentities
<?php
header('Content-Type: text/csv; charset=UTF-8');
header( 'Content-Disposition: attachment;filename=reports.csv');
echo ('åĄĆĘŁŃÓŚŹŻąćęłńóśźż');
?>
Output: åĄĆĘŁŃÓŚŹŻąćęłńóśźż
我需要在那里显示波兰字符。
谁能帮我解决这个问题?
谢谢