我正在用 php 编写一个小型学校项目。我需要以 pdf 格式显示一些信息并通过邮件发送文件。
当我从库中复制带有 pdf 类文件的 PDF 文件夹时。这是我的文件夹结构
/ /lib /迅速 /.... /Zend /PDF pdf文件 测试文件.php
这是 test_file.php 的内容
require_once 'lib/Zend/Pdf.php';
$pdf = new Zend_Pdf();
$pdf->render();
它正在扔这个
( ! ) 致命错误:require_once() [function.require]: 无法打开所需的 'Zend/Pdf/Page.php' (include_path='.;C:\xampp\php\PEAR;C:\ZendFramework-1.10.8 \bin;') 在 C:\xampp\htdocs\schoolproject\lib\Zend\Pdf.php 第 27 行
但我确实注意到所有类都通过引用顶级 Zend 文件夹包括,甚至是兄弟类前:
require_once 'Zend/Pdf/Page.php';
我对如何处理它有点困惑。我正在考虑自动加载功能或手动更正需要路径以适合我的项目(这将是一个痛苦)。
绕过它的最佳方法是什么?
感谢您阅读本文。