downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

fdf_remove_item> <fdf_open_string
[edit] Last updated: Fri, 17 May 2013

view this page in

fdf_open

(PHP 4, PHP 5)

fdf_openFDF ドキュメントをオープンする

説明

resource fdf_open ( string $filename )

フォームデータを含むファイルをオープンします。

fdf_open_string() を用いて、 PDF フォームの POST リクエストを処理することもできます。

パラメータ

filename

FDF ファイルへのパス。このファイルは、PDF フォームから返されたものか、 fdf_create() および fdf_save() で作成したものである必要があります。

返り値

FDF ドキュメントのハンドル、あるいはエラー時に FALSE を返します。

例1 フォームデータへのアクセス

<?php
// FDF データをテンポラリファイルに保存します
$fdffp fopen("test.fdf""w");
fwrite($fdffp$HTTP_FDF_DATAstrlen($HTTP_FDF_DATA));
fclose($fdffp);

// テンポラリファイルをオープンし、データを評価します
$fdf fdf_open("test.fdf");
/* ... */
fdf_close($fdf);
?>

参考



add a note add a note User Contributed Notes fdf_open - [0 notes]
There are no user contributed notes for this page.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites