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

search for in the

fdf_open_string> <fdf_header
[edit] Last updated: Fri, 24 May 2013

view this page in

fdf_next_field_name

(PHP 4, PHP 5)

fdf_next_field_name次のフィールド名を得る

説明

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

指定したフィールドの後のフィールドの名前を返します。 この名前をその他の関数で使用します。

パラメータ

fdf_document

fdf_create()fdf_open() あるいは fdf_open_string() が返す FDF ドキュメントハンドル。

fieldname

FDF フィールド名を表す文字列。 省略した場合は最初のフィールドとみなされます。

返り値

フィールド名を文字列で返します。

例1 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";
}
?>

参考



add a note add a note User Contributed Notes fdf_next_field_name - [0 notes]
There are no user contributed notes for this page.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites