如何在 PHPword 中格式化现有的 .docx 文件?
How to format an existing .docx file in PHPword?
我正在使用 PHPword library 来合成现有的 .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');
?>
谢谢。
我正在使用 PHPword library 来合成现有的 .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');
?>
谢谢。