2

我正在使用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');

 ?>

谢谢你。

4

2 回答 2

1
  1. 将现有文件加载为模板。
  2. 进行所需的编辑
  3. 保存存档。

在此处查看示例

于 2015-09-28T09:05:24.363 回答
0

您将在此链接中找到PHPWord 类的方法。

执行 CTRL + F 搜索“样式”,您将找到所有相关方法。

编辑:您还可以看到函数的内部行为;)

于 2015-04-10T12:02:35.787 回答