Query: printer_write
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
PRINTER_WRITE(3) 1 PRINTER_WRITE(3) printer_write - Write data to the printerSYNOPSISbool printer_write (resource $printer_handle, string $content)DESCRIPTIONWrites $content directly to the printer.PARAMETERSo $printer_handle -$printer_handle must be a valid printer handle. o $content - The data to be written.RETURN VALUESReturns TRUE on success or FALSE on failure.EXAMPLESExample #1 printer_write(3) example <?php $handle = printer_open(); printer_write($handle, "Text to print"); printer_close($handle); ?> PHP Documentation Group PRINTER_WRITE(3)