PHP code example of sojebsikder / html2pdf

1. Go to this page and download the library: Download sojebsikder/html2pdf 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/ */

    

sojebsikder / html2pdf example snippets


    $html = new Html2pdf();
    $html->setUrl('http://google.com');
    return $html->saveAs('sojeb.pdf');

    $html = new Html2pdf();
    $html->setUrl('http://google.com');
    return $html->download();