0

phpword我已经在我的 laravel 项目中安装了包。现在,当我尝试docx使用此代码读取文件时

public function upload(Request $request){
    $file = $request->file('file');
    $phpWord = \PhpOffice\PhpWord\IOFactory::load($file);
    foreach($phpWord->getSections() as $section) {
        foreach($section->getElements() as $element) {
            if(method_exists($element,'getText')) {
                echo $element->getText() . "<br>";
            }
        }
    }
}

我收到一个错误

找不到类“ZipArchive”

/vendor/phpoffice/common/src/Common/XMLReader.php 第 54 行

zip已经安装在我的 php.ini 中。 在此处输入图像描述

4

1 回答 1

6

请运行命令清除缓存和转储自动加载,如php artisan config:cachecomposer dump-autoload

于 2018-05-22T10:55:14.453 回答