Printer 함수 목록
PHP Manual

printer_write

(PECL printer CVS)

printer_writeWrite data to the printer

설명

bool printer_write ( resource $printer_handle , string $content )

Writes content directly to the printer.

인수

printer_handle

printer_handle must be a valid printer handle.

content

The data to be written.

반환값

성공할 경우 TRUE를, 실패할 경우 FALSE를 반환합니다.

예제

Example #1 printer_write() example

<?php
$handle 
printer_open();
printer_write($handle"Text to print");
printer_close($handle);
?>


Printer 함수 목록
PHP Manual