14 lines
360 B
PHP
Executable File
14 lines
360 B
PHP
Executable File
<?php
|
|
|
|
// https://mpdf.github.io/installation-setup/installation-v7-x.html
|
|
require_once('assets/packs/vendor/autoload.php');
|
|
|
|
$mpdf = new \Mpdf\Mpdf();
|
|
$mpdf->autoScriptToLang = true;
|
|
$mpdf->autoLangToFont = true;
|
|
$mpdf->SetDirectionality('rtl');
|
|
$html_a = '
|
|
<h1>eeee <span>السلام عليمن</span> bbb</h1>
|
|
';
|
|
$mpdf->WriteHTML($html_a);
|
|
$mpdf->Output(); |