gpt4 book ai didi

php - 使用 php 将我的数据库导出到 csv

转载 作者:行者123 更新时间:2023-11-29 12:01:45 25 4
gpt4 key购买 nike

我在 php 中创建了一个代码,用于在 twitter 上执行搜索并将结果(100 条推文)保存在数据库中。在此代码中,我还可以选择选择所有数据库推文并将它们导出到 csv 文件。

但是,如果推文有换行符,他在 csv 中就会这样:

enter image description here

我该怎么做才能将这条推文保存在 csv 的一行上(删除换行符)

这是我将推文导出到 csv 的代码:

// Database Connection

$host="xxxxxx";
$uname="xxxxx";
$pass="xxxxxx";
$database = "xxxxxx";

$connection=mysql_connect($host,$uname,$pass);

echo mysql_error();

//or die("Database Connection Failed");
$selectdb=mysql_select_db($database) or die("Database could not be selected");
$result=mysql_select_db($database)
or die("database cannot be selected <br>");


// Fetch Record from Database

$output = "";
$table = "tabela_tweets_novo"; // Enter Your Table Name
$sql = mysql_query("select tweet from $table");
$columns_total = mysql_num_fields($sql);

// Get The Field Name

for ($i = 0; $i < $columns_total; $i++) {
$heading = mysql_field_name($sql, $i);
$output .= '"'.$heading.'",';
}
$output .="\n";

// Get Records from the table

while ($row = mysql_fetch_array($sql)) {
for ($i = 0; $i < $columns_total; $i++) {

$acentua = utf8_decode($row["$i"]);
$output .='"'.$acentua.'",';
}
$output .="\n";
}

// Download the file

$filename = "UUXPost.csv";
header('Content-type: application/csv');
header('Content-Disposition: attachment; filename='.$filename);

echo $output;
exit;

最佳答案

在代码中插入第 3 行并将替换字符串更改为您想要的内容

$acentua = utf8_decode($row["$i"]);    <- your code

$order = array("\r\n", "\n", "\r");
$replace = '<br />';
$acentua = str_replace($order, $replace, $acentua);

$output .='"'.$acentua.'",'; <- your code

关于php - 使用 php 将我的数据库导出到 csv,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32258552/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com