gpt4 book ai didi

php - 抛出一个名为 : "Unable to stream pdf: headers already sent" after all whitespaces removed 的异常

转载 作者:行者123 更新时间:2023-11-27 23:14:08 28 4
gpt4 key购买 nike

我正在尝试通过复制文本区域中的整个 HTML 将 HTML 转换为 PDF。我已经尝试了此 question 中显示的所有示例没有解决问题。为什么会这样?这是我的主要 php 文件:

<?php
use Dompdf\Dompdf;
require 'vendor/autoload.php';
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" />
<title>PDF Converter</title>
</head>
<body>
<div style="text-align: center;">
<form method="POST">
<div class="form-group">
<label for="convert">Paste Your HTML Code here ; )
<hr>
<textarea name="htmlCode" class="form-control" rows="10" placeholder="<body>Example..</body>">asd</textarea>
</label>
</div>
<input class="btn btn-primary" type="submit" value="Convert To PDF" name="convert">
</form>
<?php
if (isset($_POST['convert'])) {
$dompfd = new Dompdf();
$html = htmlspecialchars($_POST['htmlCode']);
$dompfd->loadHtml($html);
$dompfd->setPaper('A4', 'landscape');
$dompfd->render();
$dompfd->stream();
}
?>
</div>
</body>
</html>

最佳答案

您输出 HTML,因此 header 已发送说它是 text/html。

将您的 PHP 移动到脚本的顶部,高于所有 HTML,它应该可以工作!

退出();在调用 stream() 方法之后。

关于php - 抛出一个名为 : "Unable to stream pdf: headers already sent" after all whitespaces removed 的异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44205026/

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