PHP 8.3.4 Released!

fdf_open_string

(PHP 4 >= 4.3.0, PHP 5 < 5.3.0, PECL fdf SVN)

fdf_open_stringRead a FDF document from a string

Açıklama

fdf_open_string(string $fdf_data): resource

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.

Bağımsız Değişkenler

fdf_data

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

Dönen Değerler

Returns a FDF document handle, or false on error.

Örnekler

Örnek 1 Accessing the form data

<?php
$fdf
= fdf_open_string($HTTP_FDF_DATA);
/* ... */
fdf_close($fdf);
?>

Ayrıca Bakınız

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top