Merge HTML Files in PHP
Combine HTML content with Aspose.Slides for PHP via Java.
Merge HTML to HTML using Aspose.Slides
Aspose.Slides for PHP via Java
can import content from multiple HTML files into a Presentation and export the resulting slides as a single HTML document. The imported text, images, and supported formatting become presentation content before the final HTML export.
Merge HTML to HTML in PHP
Using Aspose.Slides for PHP via Java , you can import two HTML files and save their combined presentation content as HTML with a few lines of PHP code.
PHP code for merging HTML to HTML
$presentation = new Presentation();
try {
$presentation->getSlides()->removeAt(0);
$firstHtmlContent = file_get_contents("file1.html");
$presentation->getSlides()->addFromHtml($firstHtmlContent);
$secondHtmlContent = file_get_contents("file2.html");
$presentation->getSlides()->addFromHtml($secondHtmlContent);
$presentation->save("merged.html", SaveFormat::Html5);
} finally {
$presentation->dispose();
}
How to merge HTML files in PHP
Install Aspose.Slides for PHP via Java. See Installation .
Configure Aspose.Slides in your PHP project.
Create a
Presentationinstance and remove its default slide.Read the HTML files with
file_get_contentsand import their content withaddFromHtml.Call
savewith the output file path andSaveFormat::Html5.
Merge Other Files
You can also combine files in other supported formats.