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.

Return值

如果成功則回傳 TRUE,失敗則回傳 FALSE

範例

Example#1 printer_write() example

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