✏️ 正在编辑: PDF.php
路径:
/srv/systems_dir/yuppiecred-lidernegocios/library/Core/PDF.php
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<?php use Carbon\Carbon; use Mpdf\Mpdf; class Core_PDF { /** @var string */ public const FOOTER = 'Gerado pelo Sistema Yuppie© '; /** * @param string $file * @param string $html * @param string|null $orientation * @param bool|null $footer * @throws \Mpdf\MpdfException */ public static function outputPdfHtml( string $file, string $html, ?string $orientation = null, ?bool $footer = false ): void { $config = ['tempDir' => sys_get_temp_dir() . DIRECTORY_SEPARATOR . 'mpdf']; if ($orientation) { $config['orientation'] = $orientation; } $mpdf = new Mpdf($config); if ($footer) { $mpdf->setFooter(self::FOOTER . Carbon::now()->format('d/m/Y H:i')); } $mpdf->WriteHTML($html); $mpdf->Output($file, 'F'); } }
💾 保存文件
← 返回文件管理器