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> <fdf_open_string
Last updated: Sat, 24 Mar 2007

view this page in

fdf_open

(PHP 4, PHP 5)

fdf_open — Open a FDF document

Popis

resource fdf_open ( string $filename )

Opens a file with form data.

You can also use fdf_open_string() to process the results of a PDF form POST request.

Seznam parametrů

filename

Path to the FDF file. This file must contain the data as returned from a PDF form or created using fdf_create() and fdf_save().

Návratové hodnoty

Returns a FDF document handle, or FALSE on error.

Příklady

Příklad 481. Accessing the form data

<?php
// Save the FDF data into a temp file
$fdffp = fopen("test.fdf", "w");
fwrite($fdffp, $HTTP_FDF_DATA, strlen($HTTP_FDF_DATA));
fclose($fdffp);

// Open temp file and evaluate data
$fdf = fdf_open("test.fdf");
/* ... */
fdf_close($fdf);
?>

Viz také

fdf_open_string()
fdf_close()
fdf_create()
fdf_save()



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

fdf_remove_item> <fdf_open_string
Last updated: Sat, 24 Mar 2007
 
 
show source | credits | stats | sitemap | contact | advertising | mirror sites