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.
반환값
ì„±ê³µí• ê²½ìš° TRUE를, ì‹¤íŒ¨í• ê²½ìš° FALSE를 반환합니다.
ì˜ˆì œ
Example#1 printer_write() example
<?php
$handle = printer_open();
printer_write($handle, "Text to print");
printer_close($handle);
?>