✏️ 正在编辑: mergeSkybillPdf.php
路径:
/home/bpioifn/www/pigmentse/modules/chronopost/async/mergeSkybillPdf.php
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<?php header('Content-type: text/plain'); require('../../../config/config.inc.php'); require_once('../libraries/PDFMerger.php'); @$pdf = new PDFMerger; $pdfs = $_POST["pdfs"]; foreach ($pdfs as $pdf_path) { $realpath = "../" . $pdf_path; if (file_exists($realpath)) { @$pdf->addPDF($realpath, 'all'); } } $name = '/skybills/Chronopost-LT-' . date('Ymd-Hi') . '.pdf'; $pdf->merge('file', '..' . $name); echo $name;
💾 保存文件
← 返回文件管理器