4

巨人の肩の上に立って、header() を使用してスクリプトを作成し、イントラネットに PDF ドキュメントを公開することに成功しました。

私の表示コード:

<?php
require_once "includes/IniFile.php";
include_once "includes/process.php";
$MyData['ini'] = IniFile::getSettings();
foreach ( $_POST as $key => $value )
   { $fn = $key; }
$fn = str_replace("|sp|"," ",$fn);
$fn = str_replace("|dt|",".",$fn);
$ed = explode('!',$fn) ;
$MyData['ini']['pathMask'] = str_replace('|DEPT|', dptdir($ed[1], $MyData['ini'] ['departments']), $MyData['ini']['pathMask']);
$MyData['ini']['pathMask'] = str_replace('|FLDR|', subdir($ed[2], $MyData['ini'] ['folders']), $MyData['ini']['pathMask']);
$fn ='';
$file = $MyData['ini']['pathMask'].$ed[0];
header('Content-type: application/pdf');
header('Content-Disposition: inline; filename="'.$fn.'"');
header('Content-Transfer-Encoding: binary');
header('Content-Length: ' . filesize($file));
@readfile($file);
?>

すべてうまくいきますが、.pdf を含む新しいページに、発行するドキュメント名に対応する < title > を付けたいと思います。

これは可能ですか?

ありがとう - クリス。

4

2 に答える 2

2

ヘッダーを破棄する代わりに、通常のページをレンダリングして PDF を iframe に埋め込む必要があります。そうすれば、タイトルを付けることができ、PDF はインラインのままです。

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>My great title for the PDF</title>
<style type="text/css">
html, body {
margin: 0;
padding: 0;
border: 0;

height: 100%;
overflow: hidden;
}
iframe {
width: 100%;
height: 100%;
border: 0
}
</style>
</head>

<body>

  <iframe src="yourpdfname.pdf"></iframe>

</body>
</html>
于 2013-02-04T22:00:31.263 に答える
0

最初に Zend/PDF ライブラリで PDF を開くと、タイトルやその他のメタ関連情報など、pdf の内容を変更できます。

参照: http://php.net/manual/en/function.pdf-set-info.php

于 2014-11-12T22:02:27.417 に答える