我正在尝试将dompdf生成的pdf下载,所以我编写了一个返回dompdf输出的函数,然后我将页面的标题更改为包含Content-type: application/pdf
,唯一的问题是出于某种原因反正标题是Content-type: text/html
无论如何。这是一个有效的pdf文件和所有内容,所以我有点不知道为什么更改内容类型不起作用。
public function couponDownload($location_uniqid = null) {
$this->autoRender = $this->layout = false;
// Set data
$account = $this->Account->getAccount($this->Auth->user('company_id'));
$data['Location'] = $account['Location'];
// Set headers
header('Content-type: application/pdf');
header('Content-Description: File Transfer');
header('Content-Disposition: attachment; filename="coupon.pdf"');
header('Content-Transfer-Encoding: binary');
// Generate pdf
echo $this->Location->generateCouponPdf($data);
}