我使用了以下代码......
<?php
require('fpdf.php');
$pdf = new FPDF();
$pdf->AddPage();
$pdf->SetFont('Arial','B',16);
$pdf->Cell(40,10,'Hello World!');
$pdf->Output();
?>
当我在服务器上运行时...我得到以下错误......
PHP Fatal error: require(): Failed opening required 'fpdf.php'
我应该包含一些其他的extenal库来使其工作...... 我的服务器目前在php 5.2.17上运行...
答案 0 :(得分:1)
请输入require函数的正确路径,例如require('fpdf/fpdf.php')
在您的代码中,创建pdf和fpdf.php的页面不在同一目录中。首先找到您的fpdf.php目录并将其包含在您的页面中。
请参考这里。 http://php.net/manual/en/function.require.php
答案 1 :(得分:0)
问题是我找不到任何说明v必须下载文件的链接。所以感谢上面的答案。我找到了我需要的确切文件。 http://www.fpdf.org/en/dl.php?v=17&f=zip 此链接下载一个zip文件。解压缩文件n将文件放在文件夹中的apache文档根目录中。现在创建自己的文件来自定义pdf文件n在文件中包含'fpdf.php',因为......
require('fpdf.php'); //or
require('../fpdf.php') //according to the file location
欢呼声。快乐编码:)