我很困惑。
我尝试使用MPDF导出html页面。我看到了这些例子,如何使用它是这样的:
<?php
$html = '
<h1><a name="top"></a>mPDF</h1>
<p>P: Nulla felis erat, imperdiet eu, ullamcorper non, nonummy quis, elit. Suspendisse potenti. Ut a eros at ligula vehicula pretium. Maecenas feugiat pede vel risus. Nulla et lectus. </p>';
include("../mpdf.php");
$mpdf=new mPDF();
$mpdf->WriteHTML($html);
$mpdf->Output();
exit;
?>
所以,我必须将html代码放入变量中,然后mpdf类将生成pdf文件。
我有这样的问题:
我想在用户提交表单后打印一个用PHP生成的页面。这是一个报告页面。用户选择他们想要的特定时间周期,页面将显示报告。
因此,我必须在用户提交表单后获取生成的html代码。我正在使用ob_get_contents()
执行此操作,然后将表单发送到上面有mpdf脚本的php页面,比如说pdf.php。
这是我在pdf.php的代码:
<?php
include("../mpdf.php");
$mpdf=new mPDF();
$htmlx = "$_POST[htmlx]";
$mpdf->WriteHTML($htmlx);
$mpdf->Output();
exit;
?>
pdf已经创建,但它没有像应该的那样正确显示(创建的pdf不能正确显示html页面)。
我认为生成的html代码可能是错误的,mpdf不理解html代码。所以我尝试这样:
我试图复制生成的html代码并使php页面像我上面的示例所示。生成的pdf正确显示在页面上!
我不明白为什么会发生这种情况。也许我不能通过php中的表单发送HTML代码?
我很抱歉我的英语不好。我希望你能理解我的问题,并能解决帮助我解决它。 谢谢。
编辑:
这里我的表单发送html代码:
<?php
$html = ob_get_contents();
$html = str_replace('"','\"',$html);
?>
<form action="pdf.php" method="POST" enctype="multipart/form-data">
<input type="submit" value="Print to PDF">
<textarea name="htmlx" style="display:; width: 100%; height:300px;" readonly><?= $html ?></textarea>
</form>
修改
这是我生成的html的示例:
<style>
*{
font-family: arial;
}
body{
background: #fff;
}
table#myTable{
border:solid 7px #eee;
-moz-border-radius: 7px;
-webkit-border-radius: 7px;
-khtml-border-radius: 7px;
border-radius: 7px;
behavior: url(/files/border-radius.htc);
}
#myTable th{
font: normal 11pt 'century gothic';
cursor:pointer;
background: #ccc;
padding: 8px 15px 8px 15px;
color:#000
}
#myTable th.header {
padding: 8px 15px 8px 15px;
background: #eee;
cursor: pointer;
font-weight: bold;
background-repeat: no-repeat;
background-position: center right;
padding-right: 20px;
margin-left: -1px;
color:#fff
}
#myTable th.headerSortUp {
background-image: url(/template/default/images/asc.gif);
background-color: #eee;
color:#fff
}
#myTable th.headerSortDown {
background-image: url(/template/default/images/desc.gif);
background-color: #eee;
color:#fff
}
#myTable tr {
border:solid 1px #3e6189;
}
#myTable td {
background:#f9f9f9;
padding: 8px 15px 8px 15px;
border:solid 1px #f0f0f0;
font-size: 9pt
}
@media print
{
.blabla{
display:none;
}
}
</style>
</head>
<body>
<script>
function printPage() { print(); }
</script>
<table cellpadding="3" cellspacing="1" border="0" width="100%" id="myTable">
<tr class="bgTransUng25">
<th width="5">No</th>
<th width="70">Pembelian</th>
<th width="100">Oleh</th>
<th width="70">Tanggal</th>
<th width="">Detail Pembelian</th>
<th width="70">Paket Pengiriman</th>
</tr>
<tr class="bgTransWht71" align="center">
<td align="right">1.</td>
<td>00122</td>
<td>Iko Uwais</td>
<td align="right">2 Jul 2012</td>
<td>
<table cellpadding="3" cellspacing="1" border="0" width="100%">
<tr class="bgTransWht25" align="center">
<td align="left">Kaos BW 9500 003</td>
<td align="right" width="70">3 pcs</td>
<td width="100"><div style="text-align:left">Rp.<div style="float:right; text-align:right">285.000</div></div></td>
</tr>
<tr class="bgTransWht25" align="center">
<td align="left">Kaos BW 9500 003</td>
<td align="right" width="70">7 pcs</td>
<td width="100"><div style="text-align:left">Rp.<div style="float:right; text-align:right">665.000</div></div></td>
</tr>
<tr class="bgTransWht25" align="center">
//and so on...
答案 0 :(得分:0)
替换
$html = str_replace('"','\"',$html);
使用:
$html = htmlentities($html);
HTML不使用反斜杠进行转义,它使用实体代码。
答案 1 :(得分:0)
我认为问题是......
“显示:;”
完全删除它。显示应默认为至少显示textarea的内容。
答案 2 :(得分:0)
你应该试试stripslashes()
,为我工作:
$mpdf->WriteHTML( stripslashes($htmlx) );