pdf文档 - 设置窗口标题(html标题)

时间:2015-12-08 03:00:57

标签: php pdf-generation symfony-http-foundation

我正在使用它输出pdf文档:

$response = new \Symfony\Component\HttpFoundation\Response(file_get_contents($thefile), 200, [
    'Content-Description' => 'File transfer',
    'Content-Disposition' => 'filename="' . $filename . '"',
    'Content-Transfer-Encoding' => 'binary',
    'Content-Type' => 'application/pdf',
]);

unlink($thefile);

$response->send();

在生成的页面中,标题标题是页面的链接。

如何自定义标题?

2 个答案:

答案 0 :(得分:-1)

您必须在pdf中包含标题。

答案 1 :(得分:-2)

我只需要从脚本生成pdf作为iframe的src!

这样就保留了头衔!

<head>
  <title>THE TITLE</title>
</head>
<body>
  <iframe src="process.php"></iframe>
</body>
</html>

或者我可以aj php脚本,并将结果返回到容器元素(例如div)