Description
resource
fdf_open_string ( string fdf_data)
The fdf_open_string() function reads form data
from a string_ fdf_data must contain the data
as returned from a PDF form or created using fdf_create()
and fdf_save_string()_
You can fdf_open_string() together with
$HTTP_FDF_DATA to process fdf form input
from a remote client_
Ejemplo 1_ Accessing the form data <?php
$fdf = fdf_open_string($HTTP_FDF_DATA);
___
fdf_close($fdf);
?> |
|
See also
fdf_open(),
fdf_close(),
fdf_create() and
fdf_save_string()_