我有一个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');
但它不起作用。