ps_set_parameter
(PECL ps >= 1.1.0)
ps_set_parameter — パラメータを設定する
説明
多くの関数で利用されるパラメータを設定します。 パラメータは文字列値として定義されます。
パラメータ
psdoc
-
ps_new() が返す、postscript ファイルのリソース ID。
name
-
使用できる名称については ps_get_parameter() を参照ください。
value
-
パラメータの値。
+add a note
User Contributed Notes 1 note
php at catchall dot toao dot net ¶
15 years ago
Note that when setting a parameter such as "true" or "false", in this case "true" and "false" are strings.
Correct syntax would be:
<?php ps_set_parameter($ps, "linebreak", "true"); ?>
This does NOT work:
<?php ps_set_parameter($ps, "linebreak", true); ?>
↑ and ↓ to navigate •