Forum und email

printer_get_option

(No version information available, might be only in CVS)

printer_get_option — プリンタ設定データを取得する

説明

mixed printer_get_option ( resource $printer_handle , string $option )

この関数は、option の設定値を取得します。

パラメータ

printer_handle

printer_handle には、プリンタへの有効なハンドルを指定する必要があります。

option

取得可能な設定については printer_set_option() を参照ください。それに加えてさらに以下の設定も取得可能です。

  • PRINTER_DEVICENAME プリンタのデバイス名を返します。
  • PRINTER_DRIVERVERSION プリンタドライバのバージョンを返します。

返り値

option の値を返します。

Example#1 printer_get_option() の例

<?php
$handle 
printer_open();
echo 
printer_get_option($handlePRINTER_DRIVERVERSION);
printer_close($handle);
?>