1

我用它来输出一个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();

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

如何自定义标题?

4

2 回答 2

-1

您必须在 pdf 中包含标题。

于 2020-05-09T21:35:05.950 回答
-2

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

这样头衔就被保留了!

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

或者我可以 ajax php 脚本,并在容器元素(例如 div)中返回结果

于 2015-12-09T01:34:23.370 回答