doujianwan7570 2010-08-18 16:00
浏览 137
已采纳

FPDF中的特殊字符与PHP

I have a web form that users can fill out and that content fills up a PDF with FPDF and PHP. When a user enters a word with an apostrophe, a slash appears before it on the PDF.

Similarly, special characters like trademark symbols are encoded wrong.

The FPDF FAQs say to use:

$str = utf8_decode($str);

But I'm just not sure how to apply that to the whole PDF. I'm trying to think about it as if it was an HTML page but that isn't helping.

Any ideas?

  • 写回答

7条回答 默认 最新

  • duanmei1850 2010-08-25 18:54
    关注

    Figured this out by doing the following (pagesubtitle is the name of the text field in the form):

    $reportSubtitle = stripslashes($_POST['pagesubtitle']);
    $reportSubtitle = iconv('UTF-8', 'windows-1252', $reportSubtitle);
    

    Then print it out:

    $pdf->Write (6, $reportSubtitle);
    

    This will remove any unwanted slashes following apostrophes, as well as use the 'iconv' function to print special characters such as ™

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(6条)

报告相同问题?