我正在尝试找到一种将实时订单发送到收据打印机的解决方案。
基本上是伪代码:
if ($order == 'success')
{
$printer = ip.to.remove.printer;
$receipt_text = 'You just received an order!';
$ch = curl_init('http://addresstosomekindofapi.com/print_receipt/');
curl_setopt($ch, SOME_OPTION, 0).............;
curl_exec($ch);
curl_close($ch);
}
我只是在探索完成这项工作的选择。能够做到这一点而不是发送经常占用线路等的传真会很棒。
一个人怎么能做到这一点?