Files
2026-04-28 21:14:25 +03:00

11 lines
302 B
PHP

<?php function html_to_pdf($html, $pdf, $paper="portrait")
{
$params = "";
if($paper == "landscape") {
$params = "-O landscape";
}
putenv('LANG=ru_RU.UTF-8');
$wk_path = env("wk_path");
$command = "$wk_path $params '$html' '$pdf'";
return shell_exec($command);
} ?>