使用PHP中的printer_open()函数,我能够打印保存在$content变量中的字符串,并能够从文件中打印.
$printer = "\\\\Pserver.PHP.net\\printername"; $handler = printer_open($printer); $content = "Test Content"; //string printer_write($handler,$content); printer_close($handler);
但是我有一个从数据库生成的html输出,并且在网页上显示,我需要在页面加载后直接打印到相同格式的打印,我尝试了很多,但我不知道我应该怎么做使用printer_open()加载页面后,使打印机直接打印相同的HTML输出.
我该怎么办?如果有的话,请建议比这更好的方法
更新
我不想使用javascript的windows.print()方法,因为它显示了打印对话框而不是直接向打印机启动打印作业
我希望用户点击提交表单和打印机直接打印收据而不要求任何东西
您可以尝试使用输出缓冲区:
原文链接:https://www.f2er.com/php/136962.htmlob_start(); // generate your output from the DB here // ..... // Send generated output to the printer printer_write($handler,ob_get_contents()); // And show it to client on the frontend ob_end_flush();