Printer 함수 목록
PHP Manual

printer_open

(PECL printer CVS)

printer_openOpens a connection to a printer

설명

resource printer_open ([ string $printername ] )

This function tries to open a connection to the given printer.

printer_open() also starts a device context.

인수

printername

The printer name. If no parameter was given it tries to open a connection to the default printer (if not specified in php.ini as printer.default_printer, PHP tries to detect it).

반환값

Returns a printer handle on success or FALSE on failure.

예제

Example #1 printer_open() example

<?php
$handle 
printer_open("HP Deskjet 930c");
$handle printer_open();
?>


Printer 함수 목록
PHP Manual