PHP printer_open
正在打印html标签。
我使用原始文本和文本printer_set_option
,但它打印相同的东西。
下面是我的代码:
if($ph = printer_open())
{
$content = $data;
printer_set_option($ph, PRINTER_MODE, "RAW");
printer_write($ph, $content);
printer_close($ph);
}
else "Couldn't connect...";
答案 0 :(得分:0)
使用打印机,您无法使用打印机呈现html,而是可以使用echo!
示例:
<?php
echo file_get_contents( "filename.php" ); // get the contents, and echo it out.
?>