Printer Funkcje
PHP Manual

printer_write

(PECL printer SVN)

printer_writeWrite data to the printer

Opis

bool printer_write ( resource $printer_handle , string $content )

Writes content directly to the printer.

Parametry

printer_handle

printer_handle must be a valid printer handle.

content

The data to be written.

Zwracane wartości

Zwraca TRUE w przypadku powodzenia, FALSE w przypadku błędu.

Przykłady

Przykład #1 printer_write() example

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


Printer Funkcje
PHP Manual