PHP
downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

fdf_open_string> <fdf_header
Last updated: Fri, 18 Jul 2008

view this page in

fdf_next_field_name

(PHP 4, PHP 5)

fdf_next_field_name — Restituisce il nome del campo successivo

Descrizione

string fdf_next_field_name ( resource $fdf_document [, string $fieldname ] )

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
fdf_next_field_name
There are no user contributed notes for this page.

fdf_open_string> <fdf_header
Last updated: Fri, 18 Jul 2008
 
 
show source | credits | stats | sitemap | contact | advertising | mirror sites