我有热敏打印机Black Copper BC-85AC我试图用php连接它这里是我使用的脚本https://github.com/mike42/escpos-php
我试过测试:
require 'autoload.php';
use Mike42\Escpos\PrintConnectors\FilePrintConnector;
use Mike42\Escpos\Printer;
$connector = new FilePrintConnector("php://stdout");
$printer = new Printer($connector);
$printer -> text("Hello World!\n");
$printer -> cut();
$printer -> close();
在通过浏览器运行此脚本之前,我是否需要进行任何设置?打印机通过USB连接到系统我尝试通过计算机手动测试打印它正在工作,但我想通过浏览器使用此PHP脚本打印。
答案 0 :(得分:1)
我刚刚发现解决方案实际上我只需要替换:
$connector = new WindowsPrintConnector("My Printer Name Here");
它工作正常。