标签: php fpdf
我正在尝试使用 FPDF 和PHP将文本文件中的文本显示为PDF。我搜索了许多链接,并尝试了以下代码,但没有得到输出。
if(($FileType == 'txt')) { $this->SetFont('Arial','',12); $this->write(10,file_get_contents(project/demo.txt)); }