回显base64字符串时设置页面标题

时间:2017-12-07 07:55:01

标签: php pdf base64 opencart page-title

我有一个pdf的base64字符串,我需要在不保存的情况下显示给用户。

我正在使用此代码显示pdf:

public function myFunction() {
  //rest of the code
  $data = base64_decode($base64_str);
  header('Content-Description: Shipment Label');
  header('Content-Type: application/pdf');
  echo $data;
}

它工作正常,但我不确定这是否正确。我需要帮助设置页面标题。目前,它是' index.php'。

我在opencart v2.3.0.2中这样做,所以我尝试了:

$this->document->setTitle('Shipment Label');

但它不起作用。

0 个答案:

没有答案