Php 通过fwrite将数据格式化到热敏打印机

Php 通过fwrite将数据格式化到热敏打印机,php,printing,formatting,fwrite,thermal-printer,Php,Printing,Formatting,Fwrite,Thermal Printer,该项目是使用PHP为客户打印一些订单细节到热敏打印机 我已通过USB成功地在Windows 10上安装了EPSON TM-T88V热敏打印机,该打印机在本地主机上运行,并带有WAMP,下面的代码非常有用: <?php $printer = "\\\\localhost\\TM-T88V"; $fp = fopen($printer, "w"); if (!$fp) { die('no connection'); } $data = " 123456789 "; if (!fw

该项目是使用PHP为客户打印一些订单细节到热敏打印机

我已通过USB成功地在Windows 10上安装了EPSON TM-T88V热敏打印机,该打印机在本地主机上运行,并带有WAMP,下面的代码非常有用:

<?php
$printer = "\\\\localhost\\TM-T88V";

$fp = fopen($printer, "w");
if (!$fp) {
    die('no connection');
}

$data = " 123456789 ";

if (!fwrite($fp, $data)) {
    die('writing failed');
}
提到它使用ESC/POS协议。应该是有用的。提到它使用ESC/POS协议。应该是有用的。