Forum und email

printer_write

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

printer_write — Write 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);
?>