Printer 函数
PHP Manual

printer_write

(PECL printer SVN)

printer_writeWrite 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.

返回值

成功时返回 TRUE, 或者在失败时返回 FALSE.

范例

Example #1 printer_write() example

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


Printer 函数
PHP Manual