我正在使用PHPword 库来格式化现有.docx
文件,但我只能替换原始文档中的特定项目。我实际上想更改整个文档的样式。谁能告诉如何实现这一目标。
我的代码:
<?php
require_once 'phpWord/PHPWord.php';
$PHPWord = new PHPWord();
$document = $PHPWord->loadTemplate('test.docx');
$test = 'Indian';
// Replacing The word 'British' with 'Indian'
$document->setValue('British', $test);
$document->save('test2.docx');
?>
谢谢你。