使用收据打印机打印


Printing with a receipt printer

我有一台带usb接口的收据打印机TM-T88IV。是否可以从.php网站直接将某些内容打印到打印机?类似的东西

<?
$text=random_text_method();
print_to_local_tm($text);
?>

我不知道该怎么惊魂未定。

如果TM-T88IV的USB连接被识别为COM(串行端口),则可以使用PHP串行端口扩展。

Gorilla(PHP串行端口扩展)
https://github.com/oasynnoum/Gorilla

大猩猩的基本用法
https://gist.github.com/oasynnoum/6076496