mpsbhat
mpsbhat

Reputation: 2773

Printing directly from PHP using printer_write() function

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?

Upvotes: 3

Views: 1598

Answers (1)

Ruslan Osmanov
Ruslan Osmanov

Reputation: 21492

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.

Upvotes: 3

Related Questions