Forum und email

printer_write

(No version information available, might be only in CVS)

printer_write — プリンタへデータを書き込む

説明

bool printer_write ( resource $printer_handle , string $content )

content を直接プリンタに書き込みます。

パラメータ

printer_handle

printer_handle には、プリンタへの有効なハンドルを指定する必要があります。

content

書き込むデータ。

返り値

成功した場合に TRUE を、失敗した場合に FALSE を返します。

Example#1 printer_write() の例

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