【发布时间】:2017-05-15 06:48:20
【问题描述】:
我在我的 ubuntu 服务器上使用了 nginx 和 hhvm,并在 laravel 中使用了 mikehaertl/phpwkhtmltopdf 包来生成 pdf,但是在 HHVM 中生成的 pdf 显示下面的内容,并且在我的本地机器上运行良好:
我的代码是:
$logo = storage_path('logo/logo.jpg');
$font = storage_path('fonts/IRRoya.ttf');
$barcode = DNS2D::getBarcodePNG($order["registration_number"], "QRCODE",5,5);
$date = jDateTime::strftime('Y-m-d H:i:s', strtotime($order['order_date']));
$f_date = jDateTime::convertNumbers($date);
$view = view('bill.bill',compact('order','logo','font','barcode','f_date'));
$pdf = new Pdf(array(
'no-outline',
'margin-top' => 0,
'margin-right' => 0,
'margin-bottom' => 0,
'margin-left' => 0,
'disable-smart-shrinking',
'commandOptions' => array(
'useExec' => true,
'procEnv' => array(
'LANG' => 'fa_IR.utf-8',
),
),
));
$pdf->addPage($view);
$pdf->send();
我该如何解决?
【问题讨论】:
-
您是否正确发送了
Content-Type标头? -
phpwkhtmltopdf没有? -
取决于你如何使用它
-
更新了我输入代码的问题
标签: laravel pdf laravel-5.2 hhvm phpwkhtmltopdf