Problems with FPDF and Euro symbol

99封情书 提交于 2019-12-04 11:48:13

问题


I've spent a couple of days sifting through various methods to encourage FPDF to render the Euro symbol, but none have succeeded. I have:

$currency = iconv("UTF-8", "ISO-8859-1//TRANSLIT", '€');

Which results in:

iconv() [function.iconv]: Detected an incomplete multibyte character in input string

I've tried a variety of encoding types, but to no avail.


回答1:


You actually can generate a PDF with euro signs using FPDF with using euro ascii code: chr(128).

It's good practice to make this a constant. At the top of your script, add:

define('EURO',chr(128));

Now you can use EURO in your script to print the euro symbol. For example:

"Costs: ".EURO.100

Will output: Costs: €100

Note: This will also work for other symbols with chr(ascii), where ascii is the ascii code of the symbol. You can find an overview of ascii codes on this page: http://www.atwebresults.com/ascii-codes.php?type=2




回答2:


I've searched for ages, and nothing worked - until I used this: utf8_encode(chr(128))




回答3:


the iconv function worked for me

$text = "String with € sign"    
$pdfobj->Write(0,iconv('UTF-8', 'windows-1252', $text));



回答4:


if You Want to show this line "£4.30" just follow bellow

$text = chr(163); $pound = $text."4.30 p m";

Note: 163 = pound code;



来源:https://stackoverflow.com/questions/19158756/problems-with-fpdf-and-euro-symbol

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!