Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 fpdf lib 以英语生成 pdf 文件,但现在我尝试以阿拉伯语生成 pdf 文件,所以问题是 FPDF 是否支持阿拉伯语,如果支持,那么我们如何生成阿拉伯语的 pdf 文件?
尝试这个:
$strp_txt = stripslashes("Write your content here"); $strp_txt = iconv('UTF-8', 'windows-1252', $strp_txt); $pdf->Write (6, $strp_txt);
希望对你有帮助。。