1. Go to this page and download the library: Download mkrawczyk/pdfmerger library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
mkrawczyk / pdfmerger example snippets
use PDFMerger\PDFMerger;
$pdf = new PDFMerger;
$pdf->addPDF('a.pdf');
$pdf->addPDF('b.pdf');
$pdf->merge('download','merged.pdf');
$pdf = new PDFMerger; // or use $pdf = new \PDFMerger; for Laravel
$pdf->addPDF('samplepdfs/one.pdf', '1, 3, 4');
$pdf->addPDF('samplepdfs/two.pdf', '1-2');
$pdf->addPDF('samplepdfs/three.pdf', 'all');
$pdf->merge('file', 'samplepdfs/TEST2.pdf'); // generate the file
$pdf->merge('download', 'samplepdfs/test.pdf'); // force download
// REPLACE 'file' WITH 'browser', 'download', 'string', or 'file' for output options
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.