前端之家收集整理的这篇文章主要介绍了
PHP printer_open正在打印html标签,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
PHP printer_open正在打印html
标签.
我使用print_set_option与raw和text但它打印相同的东西.
下面是我的代码:
if($ph = printer_open())
{
$content = $data;
printer_set_option($ph,PRINTER_MODE,"RAW");
printer_write($ph,$content);
printer_close($ph);
}
else "Couldn't connect...";
使用打印机,您无法使用打印机渲染html,而是可以使用echo!
例:
<?PHP
echo file_get_contents( "filename.PHP" ); // get the contents,and echo it out.
?>
原文链接:https://www.f2er.com/php/134068.html