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
- A....;
- R......;
- 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