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

-2

iframe の src としてスクリプトから pdf を生成するだけです。

このようにして、ヘッド タイトルが保持されます。

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

または、php スクリプトを ajax して、結果をコンテナー要素 (例: div) に返すこともできます。

于 2015-12-09T01:34:23.370 に答える