fdf_set_file
(PHP 4, PHP 5 < 5.3.0, PECL fdf SVN)
fdf_set_file — FDF データを表示する PDF ドキュメントを設定する
説明
フォームの結果を表示する PDF ドキュメントとして、もとのフォームとは別のものを指定します。
パラメータ
fdf_document
-
fdf_create()、 fdf_open() あるいは fdf_open_string() が返す FDF ドキュメントハンドル。
url
-
絶対 URL で指定する必要があります。
target_frame
-
このパラメータを使用して、ドキュメントを表示するフレームを指定します。 このパラメータのデフォルト値を fdf_set_target_frame() で指定することもできます。
例
例1 FDF データを 2 番目のフォームに渡す
<?php
/* Adobe FDF の content type を設定します */
fdf_header();
/* fdf を開始します */
$fdf = fdf_create();
/* "foo" フィールドに、値 "bar" を設定します */
fdf_set_value($fdf, "foo", "bar");
/* "fdf_form.pdf" を使用して fdf を表示することをクライアントに通知します */
fdf_set_file($fdf, "http://www.example.com/fdf_form.pdf");
/* fdf を出力します */
fdf_save($fdf);
/* 後始末を行います */
fdf_close($fdf);
?>
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google