printer_write
(No version information available, might be only in CVS)
printer_write — Write data to the printer
Popis
bool printer_write
( resource $printer_handle
, string $content
)
Writes content directly to the printer.
Parametre
- printer_handle
-
printer_handle must be a valid printer handle.
- content
-
The data to be written.
Vrátené hodnoty
Vracia TRUE pri úspechu alebe FALSE pri chybe.
PrÃklady
Example#1 printer_write() example
<?php
$handle = printer_open();
printer_write($handle, "Text to print");
printer_close($handle);
?>