fdf_open_string
(PHP 4 >= 4.3.0, PHP 5 < 5.3.0, PECL fdf SVN)
fdf_open_string — Read a FDF document from a string
Beschreibung
$fdf_data
): resourceReads 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.
Parameter-Liste
-
fdf_data
-
The data as returned from a PDF form or created using fdf_create() and fdf_save_string().
Rückgabewerte
Returns a FDF document handle, or false
on error.
Beispiele
Beispiel #1 Accessing the form data
<?php
$fdf = fdf_open_string($HTTP_FDF_DATA);
/* ... */
fdf_close($fdf);
?>
Siehe auch
- fdf_open() - Öffnet ein FDF Dokument
- fdf_close() - Schließt ein FDF Dokument
- fdf_create() - Erzeugt ein neues FDF Dokument
- fdf_save_string() - Returns the FDF document as a string