printer_get_option
(No version information available, might be only in CVS)
printer_get_option — プリンタ設定データを取得する
パラメータ
- printer_handle
-
printer_handle には、プリンタへの有効なハンドルを指定する必要があります。
- option
-
取得可能な設定については printer_set_option() を参照ください。それに加えてさらに以下の設定も取得可能です。
- PRINTER_DEVICENAME プリンタのデバイス名を返します。
- PRINTER_DRIVERVERSION プリンタドライバのバージョンを返します。
返り値
option の値を返します。
例
例1 printer_get_option() の例
<?php
$handle = printer_open();
echo printer_get_option($handle, PRINTER_DRIVERVERSION);
printer_close($handle);
?>
printer_get_option
There are no user contributed notes for this page.
