1

我正在尝试加载包含文本和图像的 pdf 文档,然后我想查看该文档中的选定内容(稍后将应用正则表达式)。到目前为止,这是我的进步,虽然不多,但我遇到了一个错误(消息:无法打开'desktop\test.pdf'文件进行阅读。),请帮忙。

<?php   $filename = 'desktop\test.pdf';

$pdf = Zend_Pdf::load($filename);      

?>
4

1 回答 1

1

只需尝试以下其中一个肯定会为您工作

方法一:在 Zend_Pdf 之外获取二进制字符串

$file = file_get_contents('path/to/file.pdf')
$pdf = new Zend_Pdf($file);

方法二:设置$load参数为true

$pdf = new Zend_Pdf('path/to/file.pdf', null, true);

方法三:使用静载法

$pdf = Zend_Pdf::load('path/to/file.pdf');

尝试每次给出正确的路径可能是绝对路径将起作用或相对可能。

于 2013-08-16T05:53:33.313 回答