Warning: file_put_contents(): Only -1 of 59 bytes written, possibly out of free disk space in /var/www/html/index.php on line 3

Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/index.php:3) in /var/www/html/cache.php on line 23

Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/index.php:3) in /var/www/html/cache.php on line 24

Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/index.php:3) in /var/www/html/cache.php on line 25
printer_end_page printer_list Printer PHP Manual printer_get_option (No version information available, might be only in CVS) — Retrieve printer configuration data Description mixed ( resource $pr...
Forum und email

printer_get_option

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

printer_get_option — Retrieve printer configuration data

Description

mixed printer_get_option ( resource $printer_handle , string $option )

The function retrieves the configuration setting of option .

Parameters

printer_handle

printer_handle must be a valid handle to a printer.

option

Take a look at printer_set_option() for the settings that can be retrieved, additionally the following settings can be retrieved:

  • PRINTER_DEVICENAME returns the devicename of the printer.
  • PRINTER_DRIVERVERSION returns the printer driver version.

Return Values

Returns the value of option .

Exempel

Example#1 printer_get_option() example

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