在PHP中将html文件转换为pdf文件

时间:2017-07-26 13:56:35

标签: javascript php jquery html

我有一个必须转换为pdf的html文件。我的代码是:

<?php
include("connection.php");
extract($_REQUEST);

$query=mysql_query("select fad_html_name from fad_record where t_id='$word'") or die(mysql_error());
while($result=mysql_fetch_array($query,MYSQL_NUM))
{
extract($result);

$zipname = 'file.zip';
$zip = new ZipArchive;
$zip->open($zipname, ZipArchive::CREATE);
foreach ($result as $file) {
 $zip->addFile($file);
}
$zip->close();
header('Content-Type: application/zip');
header('Content-disposition: attachment; filename='.$zipname);
header('Content-Length: ' . filesize($zipname));
readfile($zipname);

}
?>

目前还没有正在创建work.zip文件,但pdf无法下载。

0 个答案:

没有答案