gpt4 book ai didi

php - 如何在dom pdf中包含外部样式表

转载 作者:可可西里 更新时间:2023-11-01 13:16:13 25 4
gpt4 key购买 nike

我在 php.ini 中使用 Dompdf 生成报告。我无法包含相同的外部样式表...

我使用的代码类似于以下内容:

<?php
require_once "dompdf/dompdf_config.inc.php";
$dompdf = new DOMPDF();

$html ="
<table>
<tr >
<td class='abc'>testing table</td>
</tr>
<tr>
<td class='def'>Testng header</td>
</tr>
</table>";

$dompdf->load_html($html);
$dompdf->render();
$dompdf->set_base_path('localhost/exampls/style.css');
$dompdf->stream("hello.pdf");
?>

请让我知道如何包含外部 css 文件..

最佳答案

$dompdf->set_base_path() 不是您指定 CSS 的地方。该方法使您有机会定义附加到文档中相对路径的基本路径。

您的 CSS 应该是您提供给 dompdf 的 HTML 的一部分。类似于以下内容:

<?php
require_once "dompdf/dompdf_config.inc.php";
$dompdf = new DOMPDF();

$html ="
<html>
<head>
<link type="text/css" href="localhost/exampls/style.css" rel="stylesheet" />
</head>
<body>
<table>
<tr >
<td class='abc'>testing table</td>
</tr>
<tr>
<td class='def'>Testng header</td>
</tr>
</table>
</body>
</html>";

$dompdf->load_html($html);
$dompdf->render();
$dompdf->set_base_path('localhost/exampls/style.css');
$dompdf->stream("hello.pdf");
?>

将 dompdf 视为呈现为 PDF 而不是屏幕的网络浏览器。就像任何网络浏览器一样,您可以为它提供有效的 HTML 文档。

关于php - 如何在dom pdf中包含外部样式表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19805148/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com