Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
PHP: fdf_open - Manual
[go: Go Back, main page]

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

search for in the

fdf_remove_item" width="11" height="7"/> <fdf_open_string
Last updated: Fri, 10 Oct 2008

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
There are no user contributed notes for this page.

fdf_remove_item" width="11" height="7"/> <fdf_open_string
Last updated: Fri, 10 Oct 2008
 
 
show source | credits | sitemap | contact | advertising | mirror sites