我有一组打印机通过网络连接,并且为每台打印机分配了静态IP。
现在,我在Linux服务器上运行了一个PHP Web应用程序,该服务器需要通过网络将打印作业发送到这些打印机。
使用lpr或杯子可以吗,我该怎么办。
您可以从此处使用LPR打印机类:
http://www.phpclasses.org/package/2540-PHP-Abstraction-for-printing- documents.html
例:
<?php include("PrintSend.php"); include("PrintSendLPR.php"); $lpr = new PrintSendLPR(); $lpr->setHost("10.0.0.17"); //Put your printer IP here $lpr->setData("C:\\wampp2\\htdocs\\print\\test.txt"); //Path to file, OR string to print. $lpr->printJob("someQueue"); //If your printer has a built-in printserver, it might just accept anything as a queue name. ?>