Source of: /manual/de/function.fdf-next-field-name.php
<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/ref.fdf.inc";
$setup = array (
'home' =>
array (
0 => 'index.php',
1 => 'PHP Manual',
),
'head' =>
array (
0 => 'UTF-8',
1 => 'de',
),
'this' =>
array (
0 => 'function.fdf-next-field-name.php',
1 => 'fdf_next_field_name',
),
'up' =>
array (
0 => 'ref.fdf.php',
1 => 'FDF',
),
'prev' =>
array (
0 => 'function.fdf-header.php',
1 => 'fdf_header',
),
'next' =>
array (
0 => 'function.fdf-open-string.php',
1 => 'fdf_open_string',
),
'alternatives' =>
array (
),
);
$setup["toc"] = $TOC;
$setup["parents"] = $PARENTS;
manual_setup($setup);
manual_header();
?>
<div id="function.fdf-next-field-name" class="refentry">
<div class="refnamediv">
<h1 class="refname">fdf_next_field_name</h1>
<p class="verinfo">(PHP 4, PHP 5)</p><p class="refpurpose"><span class="refname">fdf_next_field_name</span> — <span class="dc-title">Gibt den Namen des nächsten Feldes zurück</span></p>
</div>
<div class="refsect1 unknown-returnvaluet" id="refsect1-function.fdf-next-field-name-unknown-returnvaluet">
<h3 class="title">Beschreibung</h3>
<div class="methodsynopsis dc-description">
<span class="type">string</span> <span class="methodname"><strong>fdf_next_field_name</strong></span>
( <span class="methodparam"><span class="type">resource</span> <code class="parameter">$fdf_document</code></span>
, <span class="methodparam"><span class="type">string</span> <code class="parameter">$fieldname</code></span>
)</div>
<p class="para rdfs-comment">
Die Funktion <span class="function"><strong>fdf_next_field_name()</strong></span> gibt den
Namen des Feldes nach <em><code class="parameter">fieldname</code></em> oder den
Namen des ersten Feldes zurück, wenn der Parameter <strong><code>NULL</code></strong>
ist.
</p>
<p class="para">
<div class="example" id="example-3226">
<p><strong>Beispiel #1 Detecting all fieldnames in a FDF</strong></p>
<div class="example-contents">
<div class="cdata"><pre>
<?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";
}
?>
</pre></div>
</div>
</div>
</p>
<p class="para">
Siehe auch <span class="function"><strong>fdf_set_field()</strong></span>,
<span class="function"><strong>fdf_get_field()</strong></span>.
</p>
</div>
</div><?php manual_footer(); ?>