Forum


Replies: 3   Views: 1096
Error mergedocx
Topic closed:
Please note this is an old forum thread. Information in this post may be out-to-date and/or erroneous.
Every phpdocx version includes new features and improvements. Previously unsupported features may have been added to newer releases, or past issues may have been corrected.
We encourage you to download the current phpdocx version and check the Documentation available.

Posted by organizzazione  · 08-03-2021 - 11:11

Hi,
I have a problem with the MergeDocx. In the original doc I have a numeric list while in the final document of the MergeDocx method a different list comes out
  1. A....;
  2. R......;
  3. T.......

 

it becomes

Article I.A.......;

Article II.R.....;

Article III.T.........

 

I have installed PHPDocx 11.0 Premium and i use this code:

/
            $merge = new \MultiMerge();
            $merge->mergeDocx($firstDoc, $arrayDocs, $fileFullPathDocx, array(
                'mergeType' => 1,
                'lineBreaks' => 2
            ));

Any suggestions?

Thank you