php man page for fdf_next_field_name

Query: fdf_next_field_name

OS: php

Section: 3

Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar

FDF_NEXT_FIELD_NAME(3)							 1						    FDF_NEXT_FIELD_NAME(3)

fdf_next_field_name - Get the next field name

SYNOPSIS
string fdf_next_field_name (resource $fdf_document, [string $fieldname])
DESCRIPTION
Gets the name of the field after the given field. This name can be used with several functions.
PARAMETERS
o $fdf_document - The FDF document handle, returned by fdf_create(3), fdf_open(3) or fdf_open_string(3). o $fieldname - Name of the FDF field, as a string. If not given, the first field will be assumed.
RETURN VALUES
Returns the field name as a string.
EXAMPLES
Example #1 Detecting all fieldnames in a 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 "; } ?>
SEE ALSO
fdf_get_value(3). PHP Documentation Group FDF_NEXT_FIELD_NAME(3)
Related Man Pages
fdf_add_doc_javascript(3) - php
cubrid_result(3) - php
fbsql_result(3) - php
fdf_set_value(3) - php
pg_field_name(3) - php
Similar Topics in the Unix Linux Community
Simple rules of the UNIX.COM forums:
User Guide: Posting in the Emergency Forum
Forum Video Tutorial: How to Use Code Tags
UNIX.COM 2017 Year End Summary
The Order of the Wizard's Hat - Lifetime Achievement Award 2019 - Congrats to Don Cragun