Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
To append documents using Aspose.Words Java in php, simply invoke the appendDocument() method of Document class and specify the second document to append at end.
Php Code
$doc1 = new Java("com.aspose.words.Document", "data/doc1.doc");
$doc2 = new Java("com.aspose.words.Document", "data/doc2.doc");
$importFormatMode = Java("com.aspose.words.ImportFormatMode);
$doc1->appendDocument(java_values($doc2), importFormatMode->KEEP_SOURCE_FORMATTING);
Download Append Documents (Aspose.Words) from any of the below mentioned social coding sites:
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.