Printing directly from PHP using printer_write() function

笑着哭i 提交于 2019-12-23 19:03:17

问题


I found a code printing directly from PHP:

$printer = "cups-pdf";
$ph = printer_open($printer);
if ($ph) {
    $content = "Hello World...";
    printer_set_option($ph, PRINTER_MODE, "RAW");
    printer_write($ph, $content);
    printer_close($ph);
} else {
    echo "Couldn't connect...";
}

I'm trying to test it using XAMPP on Ubuntu 14.04 LTS. But it gives me an error:

Fatal error: Call to undefined function printer_open() in /opt/lampp/htdocs/test/test.php on line 4`

How do I fix it?


回答1:


Currently, there is no way to install the Printer extension as it is Windows-only. There is no config*.m4(for Unix-like systems) file in the source, only config.w32(for Windows).

It is also written in the PECL package description:

Printer allows drawing (text, lines, ellipse, paging, etc.) and spool controlling operation using a printer device on Windows.



来源:https://stackoverflow.com/questions/40337700/printing-directly-from-php-using-printer-write-function

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!