(PHP 4, PHP 5 < 5.3.0, PECL fdf SVN)
fdf_next_field_name — Restituisce il nome del campo successivo
$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().