本文介绍了FPDF中的克罗地亚语 - PHP的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
您好。我需要使用FPDF和PHP在PDF文件中写一些克罗地亚语句子。
我知道这种语言的代码是CP1250或Windows-1250,但它没有正确写出这些类型的字母 - Č,Ć,Š,Ž...。
Hi. I need to write some croatian sentences in PDF file using FPDF and PHP.
I know that the code for this language is CP1250 or Windows-1250 but it doesn't write these types of letters correctly - "Č,Ć,Š,Ž...".
我尝试了什么:
到目前为止,我的代码显然无效:
What I have tried:
So far I have this code which apparently is not working:
$data = iconv('UTF-8', 'CP1250//TRANSLIT', $data);
推荐答案
这篇关于FPDF中的克罗地亚语 - PHP的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!