我目前正在开发一个半动态页面,我使用一些 GET 功能对其进行个性化。我也在几个地方呼应了日期。在这个页面的底部,我想要一个按钮,让访问者可以选择以 PDF 格式下载/打开这个页面。没有标题。我已经集成了 DOMPDF,但我根本无法让它正常工作,需要一些帮助。我尝试了在 Stackoverflow 上找到的一些东西,但没有成功。
基本上,我需要在 PDF 中打印整个页面,但是在加载页面时它不应该打开。但由按钮触发。然后没有标题(一个特殊的 div)。这可能吗?
<?php
require_once("dompdf/dompdf_config.inc.php");
$html =
'<html><body>'.
'<p>This is a test for '.
'<?php echo htmlentities(substr(urldecode($_SERVER["QUERY_STRING"]), 1)); ?> </p>'.
'<p>Thank you for reading.</p>'.
'</body></html>';
$dompdf = new DOMPDF();
$dompdf->load_html($html);
$dompdf->render();
$dompdf->stream("the_inquiry.pdf");
return true;
?>
<html>
<body>
<div class="shouldnotPrintToPDF">
Content.
</div>
<div class="shouldPrintToPDF">
Sensitive content.
<a href="the_inquiry.pdf">Open or save as PDF</a>
</div>
</body>
</html>
这基本上是我们的一页演示文稿。并且包含很多文字,所以我不会在这里展示所有这些。但是这样一来,我必须在 $html = 以及实际标签内编写两次页面。并且 PDF 保存/打开选项从一开始就弹出,这是不应该的。我还希望将 echo htmlentities 部分附加到实际的 pdf 名称中。这可能吗?PDF 打开并包含放入 $html = 的内容就可以了。但不是由链接触发的。
更新:当我完全按照您在此处执行的操作时,我收到一条错误消息“在此服务器上找不到请求的 URL /inquiry.php&pdf=1。” 我有我试图在根级别以 pdf 格式打印的页面,但 DOMPDF 在 /dompdf 中。我不知道这是否与它有关?
更新:当我编辑链接时,我会在一个新页面中获取所有这些信息,如下所示。
[_parse_properties(margin:=1.2cm)(empty)_parse_properties]
[_parse_sections[section[_parse_properties(display:=-dompdf-page)
(counter-reset:=page)(empty)_parse_properties]#html#section]
[section[_parse_properties(empty)_parse_properties]#empty#section]
_parse_sections][_parse_sections[section[_parse_properties(display:=block)
(empty)_parse_properties]#div##map##dt##isindex#section]
[section[_parse_properties(empty)_parse_properties]#empty#section]
_parse_sections][_parse_sections[section[_parse_properties(page-break
-before:=avoid)(display:=block)(counter-increment:=page)
(empty)_parse_properties]#body#section]
[section[_parse_properties(empty)_parse_properties]#empty#section]_parse_sections]
[_parse_sections[section[_parse_properties(display:=block)(margin:=1em
0)(empty)_parse_properties]#p##dl##multicol#section]
[section[_parse_properties(empty)_parse_properties]#empty#section]_parse_sections]
[_parse_sections[section[_parse_properties(display:=block)(margin-left:=40px)
(empty)_parse_properties]#dd#section]
[section[_parse_properties(empty)_parse_properties]#empty#section]_parse_sections]
[_parse_sections[section[_parse_properties(display:=block)(margin:=1em
40px)(empty)_parse_properties]#blockquote#section]
[section[_parse_properties(empty)_parse_properties]#empty#section]_parse_sections]
[_parse_sections[section[_parse_properties(display:=block)(font-style:=italic)
(empty)_parse_properties]#address#section]
[section[_parse_properties(empty)_parse_properties]#empty#section]_parse_sections]
[_parse_sections[section[_parse_properties(display:=block)(text-align:=center)
(empty)_parse_properties]#center#section]
你知道它可能是由什么引起的吗?
突破:
当我激活 DOMPDF_DPI 时,它实际上以 PDF 格式打开,但现在所有文本都出现在 PDF 第二页的第一行。就像,所有的文字都出现在彼此之上。此外,当它打开 PDF 时,?&pdf=1 包含在 htmlentities 查询字符串中,这看起来非常混乱,因为它应该是个性化页面以及 PDF。