PHP escpos 打印
PHP escpos Printing
有人可以帮忙吗?
您好,
我正在使用 "EPSON TM-T82II Receipt" 使用 php 代码
打印 bills.Iam
<?php
require_once(dirname(__FILE__) . "/Escpos.php");
try {
$connector = null;
$connector = new WindowsPrintConnector("EPSON TM-T82II Receipt");
/* Print a "Hello world" receipt" */
$printer = new Escpos($connector);
$printer -> text("Hello World!\n");
$printer -> cut();
/* Close printer */
$printer -> close();
} catch(Exception $e) {
echo "Couldn't print to this printer: " . $e -> getMessage() . "\n";
}
Iam getting this error "Couldn't print to this printer: Printer
'EPSON TM-T82II Receipt' 无效。使用本地端口(LPT1、COM1 等)
或 smb://computer/printer 表示法。 “
您应该完全按照错误提示操作 - 您需要使用 WindowsPrintConnector("LPT1")
或 WindowsPrintConnector("smb://XXX")
而不是 WindowsPrintConnector("EPSON TM-T82II Receipt")
,其中 XXX 是您打印机的网络路径。
有人可以帮忙吗?
您好, 我正在使用 "EPSON TM-T82II Receipt" 使用 php 代码
打印 bills.Iam <?php
require_once(dirname(__FILE__) . "/Escpos.php");
try {
$connector = null;
$connector = new WindowsPrintConnector("EPSON TM-T82II Receipt");
/* Print a "Hello world" receipt" */
$printer = new Escpos($connector);
$printer -> text("Hello World!\n");
$printer -> cut();
/* Close printer */
$printer -> close();
} catch(Exception $e) {
echo "Couldn't print to this printer: " . $e -> getMessage() . "\n";
}
Iam getting this error "Couldn't print to this printer: Printer
'EPSON TM-T82II Receipt' 无效。使用本地端口(LPT1、COM1 等) 或 smb://computer/printer 表示法。 “
您应该完全按照错误提示操作 - 您需要使用 WindowsPrintConnector("LPT1")
或 WindowsPrintConnector("smb://XXX")
而不是 WindowsPrintConnector("EPSON TM-T82II Receipt")
,其中 XXX 是您打印机的网络路径。