我正在尝试通过此代码连接到另一台机器上的打印机
$handle = printer_open("\\\\xxx.xxx.xxx.xxx\\Canon MF4320-4350");
if($handle)
echo "connected";
else
echo "not connected";
并得到错误
Fatal error: Call to undefined function printer_open() in C:\wamp\www\print\index.php on line 3
我已经安装了 php_printer.dll 但它没有在phpinfo()
. 使用 PHP 版本 5.3.0
我怎样才能连接到打印机并使我的printer_open()
方法工作?