通过PHP使用打印机

时间:2012-09-06 12:54:09

标签: php windows printing localhost intranet

我在Intranet上有四台计算机和一台打印机,我在其中一台Windows机器上安装了WAMP。现在我想从窗口机器浏览器(或通过Ajax等)执行PHP脚本来打印数据。我需要知道它有可能吗?如果是的话怎么样?

1 个答案:

答案 0 :(得分:1)

使用printer函数:

<?php 
    $printer = "\\\\hostname\\printername"); 
    if($ph = printer_open($printer)) { 
       $fh = file_get_contents('myfile.txt');
       printer_set_option($ph, PRINTER_MODE, "RAW"); 
       printer_write($ph, $content); 
       printer_close($ph); 
    } else {
        echo "Can't connect to printer"; 
    }
?>