假设我有以下文件:
布局.php
<?php
session_start();
?>
<table width="700" border="1" cellspacing="0" cellpadding="0">
<tr>
<th>Id</th>
<th>Nombre</td>
</tr>
<tr>
<td><?php echo $_SESSION['id']; ?></td>
<td><?php echo $_SESSION['nombre']; ?></td>
</tr>
</table>
有没有办法可以将该文件下载为 PDF 格式,并像您在浏览器中看到的那样输出该文件?
我试过了,但没有用:
<?php
session_start();
header("Content-type:application/pdf");
header("Content-Disposition:attachment;filename=info_user.pdf");
readfile('layout.php');
?>