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 行