我有一个用户的多个 pdf 文件。因此,我为我们的用户提供了一个选项,可以在一个 PDF 文件中查看他的所有文档。
为此,我使用 FPDI pdf 解析器将所有 pdf 文件合并到一个文件中,然后显示给用户。但我得到以下错误:
Illegal string offset '/Root' in pdf_parser.php line 90
下面给出了引发此错误的函数:
protected function _readRoot()
{
if ($this->_xref['trailer'][1]['/Root'][0] != self::TYPE_OBJREF) {
throw new \Exception('Wrong Type of Root-Element! Must be an indirect reference');
}
$this->_root = $this->resolveObject($this->_xref['trailer'][1]['/Root']);
}
谁能告诉我这是什么问题。我已经尝试了很多,也搜索了很多东西,但都失败了。
提前致谢。