假设我有以下文件:
layout.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');
?>