fdf_open_string

(PHP 4 >= 4.3.0, PHP 5, PHP 7)
Read a FDF document from a string
resource fdf_open_string ( string $fdf_data )

Reads form data from a string.

You can use fdf_open_string() together with $HTTP_FDF_DATA to process FDF form input from a remote client.

Parameters:
fdf_data

The data as returned from a PDF form or created using fdf_create() and fdf_save_string().

Returns:

Returns a FDF document handle, or FALSE on error.

Examples:
Accessing the form data
<?php
$fdf = fdf_open_string($HTTP_FDF_DATA);
/* ... */
fdf_close($fdf);
?>

See also:

fdf_open() -

fdf_close() -

fdf_create() -

fdf_save_string() -

doc_php
2016-02-24 16:02:59
Comments
Leave a Comment

Please login to continue.