printer_get_option
(PECL printer SVN)
printer_get_option — Retrieve printer configuration data
Description
The function retrieves the configuration setting of option.
Parameters
-
printer_handle -
printer_handlemust 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_DEVICENAMEreturns the devicename of the printer. -
PRINTER_DRIVERVERSIONreturns the printer driver version.
-
Return Values
Returns the value of option.
Examples
Example #1 printer_get_option() example
<?php
$handle = printer_open();
echo printer_get_option($handle, PRINTER_DRIVERVERSION);
printer_close($handle);
?>
There are no user contributed notes for this page.
