我必须进行CSV文件导出,并且该文件必须具有ISO-8859-2字符编码,并正确显示外来字符。
控制器如下所示:
public function exportAction(Request $request) {
$repository = $this->getDoctrine()
->getManager()
->getRepository('AdminBundle:ShopPayroll');
$request = $this->get('request');
$response = $this->render('AdminBundle:Payroll:csv.html.twig', [
'list' => $repository->getSomeData()
]);
$handle = fopen('php://memory', 'r+');
$header = array();
fputcsv($handle, (array)utf8_decode($response));
rewind($handle);
$content = stream_get_contents($handle);
fclose($handle);
$response->setCharset('ISO-8859-2');
$response->headers->set('Content-Type', 'text/csv; charset=ISO-8859-2');
$response->headers->set('Content-Disposition', 'attachment; filename="export.csv"');
$response->prepare($request);
return $response->send();
}
csv.html.twig文件本身(该文件编码为ISO-8859-2):
{% for payroll in list %}
{{ payroll.fvatName|slice(0,32)|lower|title|raw|convert_encoding('UTF-8', 'ISO-8859-2') }}
{% endfor %}
好的,它会以ISO-8859-2编码下载文件,但如果字符串变量包含外来字符,则,它会将这些字符更改为一些奇怪的符号。
我尝试在fputcsv()函数中使用iconv,我尝试将它用作twig内置函数 - 无效。
我该如何解决这个问题?
答案 0 :(得分:0)
utf8_decode()功能并不完全符合您的想法。 Stack Overflow常规中有一个user comment可以很好地解释它(强调我的):
请注意,utf8_decode只需转换以UTF-8编码的字符串 到ISO-8859-1 。一个更恰当的名称 utf8_to_iso88591。如果您的文本已经在ISO-8859-1中编码,那么您 不需要这个功能。如果你不想使用ISO-8859-1,你可以 不需要这个功能。
您想要从UTF-8转换为 ISO-8859-2 ,因此此功能完全不合适。
备选方案包括iconv()和mb_convert_encoding()。
答案 1 :(得分:0)
它对我有用。
//open file pointer to standard output
$fp = fopen('php://output', 'w');
//add BOM to fix UTF-8 in Excel
fputs($fp, $bom =( chr(0xEF) . chr(0xBB) . chr(0xBF) ));
fclose($fp);
return $response->send();