fdf_next_field_name

(PHP 4, PHP 5 < 5.3.0, PECL fdf SVN)

fdf_next_field_nameRestituisce il nome del campo successivo

Descrizione

fdf_next_field_name(resource $fdf_document, string $fieldname = ?): string

La funzione fdf_next_field_name() restituisce il nome del campo successivo al campo indicato in fieldname o il nome del primo campo se รจ impostato a null.

Example #1 Rilevazione di tutti i campi in un FDF

<?php
$fdf
= fdf_open($HTTP_FDF_DATA);
for (
$field = fdf_next_field_name($fdf);
$field != "";
$field = fdf_next_field_name($fdf, $field)) {
echo
"field: $field\n";
}
?>

Vedere anche fdf_enum_fields() e fdf_get_value().

add a note add a note

User Contributed Notes

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