我有一个包含 SQL 查询数据的字符串,我尝试将其导出到文本文件。但我只想要列name
和data
,我不想要元数据。我使用了以下代码:
header('Content-type: application/txt');
header('Content-Disposition: attachment; filename="day2.txt"');
echo "$header\n$data";
输出如下所示。我怎样才能只得到里面的内容body
?我不想要html
标签。
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title></title>
</head>
<body>"1340129" "2013-04-08" "true" "true"</body>
</html>