您好我正在尝试将数据从mysql db导出到csv文件,方法是以.csv格式下载。
这是我的代码:
<?php
if(isset($_GET['Download']))
{
include 'conn.php';
$stmt = $pdo->prepare("select * from table");
$stmt->execute();
$rows = $stmt->fetchAll(PDO::FETCH_ASSOC);
$filename = "export.csv";
$f = fopen('php://output', 'w');
header('Content-Type: text/csv');
header('Content-Disposition: attachement; filename="export.csv"');
header("Pragma: no-cache");
header("Expires: 0");
foreach ($rows as $line) {
fputcsv($f, $line);
}
fclose($f);
}
?>
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
</head>
<body>
<form class="form-horizontal" action="<?php echo $_SERVER["PHP_SELF"];?>" method="GET" >
<input type="submit" name="Download" value="Download" class="submit" />
</script>
</form>
</body>
</html>
现在,浏览器要求用户将文件另存为。并且文件也正在下载,但下载永远不会完成,csv文件包含数据和代码。我不想要的。看来标题中有一些错误。请帮忙。
答案 0 :(得分:2)
尝试在exit();
之后直接添加fclose($f);
- 否则它也会在下载中包含HTML。