我有下面的代码,应该使它能够打印一些东西到热敏收据打印机。
if ($_GET['action'] == 'print')
{
$printer = "\\\\localhost\\zebra";
// Open connection to the thermal printer
$fp = fopen($printer, "w");
if (!$fp){
die('no connection');
}
$data = " PRINT THIS ";
// Cut Paper
$data .= "\x00\x1Bi\x00";
if (!fwrite($fp,$data)){
die('writing failed');
}
}
虽然,当我运行它时,没有任何事情发生沿着没有任何错误。如何从PHP打印?
1条答案
按热度按时间x4shl7ld1#
试试这个...