source: trunk/client/inc/hpdf5/spipu/html2pdf/examples/example07.php@ 347

Last change on this file since 347 was 347, checked in by roby, 3 years ago

Aggiornamento per compatibilità con php7.4

File size: 909 bytes
Line 
1<?php
2/**
3 * Html2Pdf Library - example
4 *
5 * HTML => PDF converter
6 * distributed under the OSL-3.0 License
7 *
8 * @package Html2pdf
9 * @author Laurent MINGUET <webmaster@html2pdf.fr>
10 * @copyright 2017 Laurent MINGUET
11 */
12require_once dirname(__FILE__).'/../vendor/autoload.php';
13
14use Spipu\Html2Pdf\Html2Pdf;
15use Spipu\Html2Pdf\Exception\Html2PdfException;
16use Spipu\Html2Pdf\Exception\ExceptionFormatter;
17
18try {
19 // get the HTML
20 ob_start();
21 include dirname(__FILE__).'/res/example07a.php';
22 include dirname(__FILE__).'/res/example07b.php';
23 $content = ob_get_clean();
24
25 $html2pdf = new Html2Pdf('P', 'A4', 'fr');
26 $html2pdf->pdf->SetDisplayMode('fullpage');
27 $html2pdf->writeHTML($content);
28 $html2pdf->output('example07.pdf');
29} catch (Html2PdfException $e) {
30 $html2pdf->clean();
31
32 $formatter = new ExceptionFormatter($e);
33 echo $formatter->getHtmlMessage();
34}
Note: See TracBrowser for help on using the repository browser.