首先是一些背景故事。我有一个与定制创建的票务系统一起使用的数据库。通过使用PHP的HTML表单输入新票证。

我需要能够将某些结果导出到CSV,具体取决于用户在单独的表单上选择的内容。

从PHP到CSV的MySQL快速谷歌浏览器,打开了此网站。

http://www.a2zwebhelp.com/export-data-to-csv

我对代码进行了一些修改,以使查询不会从表中选择所有列,以下是我的修改后的代码。

<?php

// Database Connection

$host="localhost";
$uname="REMOVED";
$pass="REMOVED";
$database = "REMOVED";

$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          = "site_calls"; // Enter Your Table Name
$sql            = mysql_query("select call_id, call_first_name, call_email,   call_department, call_subject, call_status, call_user, call_date, call_date2 from $table WHERE (call_user = 15)");
$columns_total  = mysql_num_fields($sql);

// Get The Field Name

$columns =   ["call_id","call_first_name","call_email","call_department","call_subject","call_status","call_user","call_date","call_date2"];
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++) {
$output .='"'.$row["$i"].'",';
}
$output .="\n";
}

// Download the file

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

echo $output;
exit;

?>


这几乎可以完全满足我的要求。唯一的问题是由于时间/日期保存在数据库(Unix)中的方式所致,两列call_date和call_date2的输出作为Unix输出。我需要这些以DD / MM / YY或其他人类可读格式显示。我可以使用excel中的公式手动更改此设置,但这是客户可以访问的内容,他们需要能够读取日期。

另外,mysql已贬值,上面的代码是否有重大更改,以使其可以在mysqli上使用。系统的其余部分使用mysqli编写,用于输入数据。

TL:DR。从MYSQL数据库导出某些列,需要使用php将Unix中的2列转换为可读的日期/时间。

最佳答案

尝试这个 :

while ($row = mysql_fetch_array($sql)) {
  for ($i = 0; $i < $columns_total; $i++) {
    $heading = mysql_field_name($sql, $i);
    if ($heading == 'call_date' || $heading == 'call_date2') {
      $output .= '"'.date('d/m/y', strtotime($row["$i"])).'",';
    }
    else {
      $output .='"'.$row["$i"].'",';
    }
  }
  $output .="\n";
}

关于php - 将MySQL数据库转换为CSV时将MySQL数据库导出为CSV,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29631461/

10-11 01:42
查看更多