PHP 8.3.4 Released!

fdf_set_opt

(PHP 4 >= 4.0.2, PHP 5 < 5.3.0, PECL fdf SVN)

fdf_set_optフィールドのオプションを設定する

説明

fdf_set_opt(
    resource $fdf_document,
    string $fieldname,
    int $element,
    string $str1,
    string $str2
): bool

指定したフィールドのオプションを設定します。

パラメータ

fdf_document

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

fieldname

FDF フィールド名を表す文字列。

element

str1

str2

戻り値

成功した場合に true を、失敗した場合に false を返します。

参考

add a note

User Contributed Notes 1 note

up
0
ceo at l-i-e dot com
20 years ago
For a nice example of how this works to populate a list box dynamically, see this URL:

http://www.fooassociates.com/phpfer/html/rn20re282.html
To Top