如何使用 php 从页面中打印出来?

发布于 2024-12-17 01:54:54 字数 86 浏览 2 评论 0原文

我正在尝试使用 php 从页面中打印出来。 我可以用 JavaScript 做到这一点。但想用 PHP 来做。 除了使用Javascript之外还有什么办法吗

I am trying to to take the print out of a page using php.
I can do it in Javascript. But would like to do it using PHP.
Is there any way to do other than using Javascript

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

合约呢 2024-12-24 01:54:54

不可以。打印页面是浏览器的一项功能,因此您必须使用浏览器中运行的代码。这意味着仅限 Javascript,而不是 PHP。

No. Printing a page is a function of the browser, so you have to use code that's running in the browser. That means Javascript only, not PHP.

墨小墨 2024-12-24 01:54:54
   <?php error_reporting(0); 
    include('config.php');
       $ftch="SELECT * FROM tb_patient_info WHERE patient_id='9'";
          $ftch_row=mysql_fetch_array(mysql_query($ftch));
         $ink=base64_encode(file_get_contents('patient_image/'.$img));

              ?>
         <script type="text/javascript">
            function CallPrint(strid)
            {
     var printContent = document.getElementById(strid);
     var windowUrl = 'about:blank';
     var uniqueName = new Date();
     var windowName = 'Print' + uniqueName.getTime();

     var printWindow = window.open(windowUrl, windowName, 'left=50000,top=50000,width=800,height=600');
     printWindow.document.body.innerHTML = printContent.innerHTML;
     printWindow.document.close();
     printWindow.focus();
     printWindow.print();
     printWindow.close();
     return false;

}

            <?php $content= '<table style="width:450px; color:#00000; margin:22px 0 0 0px; font-family:Helvetica, sans-serif, Verdana; font-size:15px;  border1px solid #666;">

        <tr><td style=" width:200px;"> Email:</td> <td style="  width:250px;">' . $ftch_row['patient_name']. '</td></tr>


        </table>'




         ?>




                                   <div style="width:655px; height:250px;"  id="printArea"><div style="width:450px; height:250px; float:left;" > <?php echo $content; ?></div><div style="width:150px; height:150px; border:5px solid #999; float:left;  margin:50px 0 0 0;" ><img src="data:image/jpg;base64,<?php echo $ink;?>"  height="150" width="150"/></div></div>




<div style=" height:20px; width:60px; margin:0 0 0 550px;"><input name="print" type="button" value="Print" onclick="CallPrint('printArea')" /></div>

!这是打印页面图像]1

   <?php error_reporting(0); 
    include('config.php');
       $ftch="SELECT * FROM tb_patient_info WHERE patient_id='9'";
          $ftch_row=mysql_fetch_array(mysql_query($ftch));
         $ink=base64_encode(file_get_contents('patient_image/'.$img));

              ?>
         <script type="text/javascript">
            function CallPrint(strid)
            {
     var printContent = document.getElementById(strid);
     var windowUrl = 'about:blank';
     var uniqueName = new Date();
     var windowName = 'Print' + uniqueName.getTime();

     var printWindow = window.open(windowUrl, windowName, 'left=50000,top=50000,width=800,height=600');
     printWindow.document.body.innerHTML = printContent.innerHTML;
     printWindow.document.close();
     printWindow.focus();
     printWindow.print();
     printWindow.close();
     return false;

}

            <?php $content= '<table style="width:450px; color:#00000; margin:22px 0 0 0px; font-family:Helvetica, sans-serif, Verdana; font-size:15px;  border1px solid #666;">

        <tr><td style=" width:200px;"> Email:</td> <td style="  width:250px;">' . $ftch_row['patient_name']. '</td></tr>


        </table>'




         ?>




                                   <div style="width:655px; height:250px;"  id="printArea"><div style="width:450px; height:250px; float:left;" > <?php echo $content; ?></div><div style="width:150px; height:150px; border:5px solid #999; float:left;  margin:50px 0 0 0;" ><img src="data:image/jpg;base64,<?php echo $ink;?>"  height="150" width="150"/></div></div>




<div style=" height:20px; width:60px; margin:0 0 0 550px;"><input name="print" type="button" value="Print" onclick="CallPrint('printArea')" /></div>

!This is a print page image]1

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文