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