PHP Doku:: Read a FDF document from a string - function.fdf-open-string.html

Verlauf / Chronik / History: (50) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzNon-Text MIME-AusgabenForms Data Format FunktionenFDF Funktionenfdf_open_string

Ein Service von Reinhard Neidl - Webprogrammierung.

Verdiene Geld mit Deiner Homepage oder deinem Blog: Setzte eine Textlinkwerbung und bestimme den Preis selber.
Einfach kostenlos anmelden und einen Platz auf Deiner Homepage anbieten.
Make money with your homepage or blog: Set a text link advertising and declare the price.
Register free of charge and offer a place on your homepage.
FDF Funktionen

<<fdf_next_field_name

fdf_open>>

fdf_open_string

(PHP 4 >= 4.3.0, PHP 5)

fdf_open_stringRead a FDF document from a string

Beschreibung

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.

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


Verdiene Geld mit Deiner Homepage oder deinem Blog: Setzte eine Textlinkwerbung und bestimme den Preis selber.
Einfach kostenlos anmelden und einen Platz auf Deiner Homepage anbieten.
Make money with your homepage or blog: Set a text link advertising and declare the price.
Register free of charge and offer a place on your homepage.
Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)