(No version information available, might be only in CVS)
printer_write — Write data to the printer
Writes content directly to the printer.
printer_handle must be a valid printer handle.
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);
?>