• PHP Video Tutorials

PHP - FDF Open String Module



The fdf_open_string() function can read the FDF document from a string.

Syntax

resource fdf_open_string( string $fdf_data )

The fdf_open_string() function can read the form data from a string, fdf_data must contain the data as returned from the PDF form or created using fdf_create() and fdf_save_string() functions.

The fdf_open_string() function can return the FDF document handle, or false on error.

Example

<?php
   $fdf = fdf_open_string($HTTP_FDF_DATA);
   fdf_close($fdf);
?>
php_function_reference.htm
Advertisements