可以使用PHP库PHPWord来生成和操作Word文档。以下是一个简单的示例:
composer require phpoffice/phpword
<?php
require_once 'vendor/autoload.php';
$phpWord = new \PhpOffice\PhpWord\PhpWord();
$section = $phpWord->addSection();
$section->addText('Hello World!');
$writer = \PhpOffice\PhpWord\IOFactory::createWriter($phpWord, 'Word2007');
$writer->save('hello_world.docx');
hello_world.docx
的Word文档,里面包含文本“Hello World!”。这只是一个简单的示例,PHPWord库还提供了很多其他功能,如添加图片、表格、样式等。你可以查看官方文档来了解更多用法:https://phpword.readthedocs.io/en/latest/