php - 使用 join 时如何将日期字段从数据库反转到 xls 文件

标签 php mysql date xls

我正在使用 php mysql,并且正在从数据库值生成 XLS 文件,但我的问题是日期字段以 2014-01-05 形式出现,但我想要它在我的 XLS 文件中为 05-01-2014。我通过联接查询显示所有字段(因此使用 select *),这就是为什么我无法分离日期字段以将其转换为所需格式的原因。我怎样才能实现这个目标?

这是我生成 XLS 的 SQL 查询:

select * from  registration 
join programme on registration.id=programme.stuid 
join family on registration.id = family.stuid 
join address on registration.id = address.stuid 
join education on registration.id = education.stuid 
join extradetail on registration.id=extradetail.stuid 
join workexperience on registration.id=workexperience.stuid 
join demanddraft on registration.id = demanddraft.stuid 
where (DATE(demanddraft.ApporvedDate) >= '".$term1."' 
    AND DATE(demanddraft.ApporvedDate) <= '".$term2."') 
    AND demanddraft.ddstatus = 'Approved'

这是生成xls的完整代码:

<?php

     $term1 = Date("Y-m-d",strtotime($_REQUEST['date1']));

      $term2 = Date("Y-m-d",strtotime($_REQUEST['date2']));

      $term3 = Date("d-m-Y",strtotime($term1));
      $term4 = Date("d-m-Y",strtotime($term2));

     $mode = $_REQUEST['mode'];
     $choice = $_REQUEST['choice'];
    if($mode == 'DD'){ 
     select * from  registration 
    join programme on registration.id=programme.stuid 
    join family on registration.id = family.stuid 
    join address on registration.id = address.stuid 
    join education on registration.id = education.stuid 
    join extradetail on registration.id=extradetail.stuid 
    join workexperience on registration.id=workexperience.stuid 
    join demanddraft on registration.id = demanddraft.stuid 
    where (DATE(demanddraft.ApporvedDate) >= '".$term1."' 
        AND DATE(demanddraft.ApporvedDate) <= '".$term2."') 
        AND demanddraft.ddstatus = 'Approved'


}

     //Optional: print out title to top of Excel or Word file with Timestamp
     //for when file was generated:
     //set $Use_Titel = 1 to generate title, 0 not to use title
     $Use_Title = 1;
     //define date for title: EDIT this to create the time-format you need
     $now_date = date('m-d-Y H:i');
     //define title for .doc or .xls file: EDIT this if you want
    $title = "Dump For Table $DB_TBLName from Database $DB_DBName on $now_date";
    //$date = date('d-M-Y');
     /*
     Leave the connection info below as it is:
     just edit the above.
     (Editing of code past this point recommended only for advanced users.)
     */
     //create MySQL connection
     $Connect = @mysql_connect($DB_Server, $DB_Username, $DB_Password)
         or die("Couldn't connect to MySQL:<br>" . mysql_error() . "<br>" . mysql_errno());
     //select database
     $Db = @mysql_select_db($DB_DBName, $Connect)
         or die("Couldn't select database:<br>" . mysql_error(). "<br>" . mysql_errno());
     //execute query
     $result = @mysql_query($sql,$Connect)
         or die("Couldn't execute query:<br>" . mysql_error(). "<br>" . mysql_errno());
     //if this parameter is included ($w=1), file returned will be in word format ('.doc')
     //if parameter is not included, file returned will be in excel format ('.xls')
     if (isset($w) && ($w==1))
     {
         $file_type = "msword";
         $file_ending = "doc";
     }else {
         $file_type = "vnd.ms-excel";
         $file_ending = "xls";
     }
     //header info for browser: determines file type ('.doc' or '.xls')
     header("Content-Type: application/$file_type");
     //header("Content-Disposition: attachment; filename=$DB_TBLName.$date.$file_ending");
     header("Content-Disposition: attachment; filename=$DB_TBLName.$file_ending");
     header("Pragma: no-cache");
     header("Expires: 0");

     /*    Start of Formatting for Word or Excel    */
     if (isset($w) && ($w==1)) //check for $w again
     {
         /*    FORMATTING FOR WORD DOCUMENTS ('.doc')   */
         //create title with timestamp:
         if ($Use_Title == 1)
         {
             echo("$titlenn");
         }
         //define separator (defines columns in excel & tabs in word)
         $sep = "\r"; //new line character
         while($row = mysql_fetch_row($result))
         {
             //set_time_limit(60); // HaRa
             $schema_insert = "";
             for($j=0; $j<mysql_num_fields($result);$j++)
             {
             //define field names
             $field_name = mysql_field_name($result,$j);
             //will show name of fields
             $schema_insert .= "$field_name:t";


                 if(!isset($row[$j])) {
                     $schema_insert .= "NULL".$sep;
                     }
                 elseif ($row[$j] != "") {
                     $schema_insert .= "$row[$j]".$sep;
                     }
                 else {
                     $schema_insert .= "".$sep;
                     }
             }
             $schema_insert = str_replace($sep."$", "", $schema_insert);
             $schema_insert .= "\t\n";
             print(trim($schema_insert));
             //end of each mysql row
             //creates line to separate data from each MySQL table row

             print "n----------------------------------------------------n";
         }
     }else{
         /*    FORMATTING FOR EXCEL DOCUMENTS ('.xls')   */
         //create title with timestamp:
         if ($Use_Title == 1)
         {
             echo("$titlen");
         }
         //define separator (defines columns in excel & tabs in word)
         $sep = "\t"; //tabbed character
         //start of printing column names as names of MySQL fields
         for ($i = 0; $i < mysql_num_fields($result); $i++)
         {
             echo mysql_field_name($result,$i) . "\t";
         }
         print("\n");
         //end of printing column names
         //start while loop to get data
         while($row = mysql_fetch_row($result))
         {
             //set_time_limit(60); // HaRa
             $schema_insert = "";
             for($j=0; $j<mysql_num_fields($result);$j++)
             {

               if(!isset($row[$j]))
                     $schema_insert .= "NULL".$sep;
                 elseif ($row[$j] != "")
                     $schema_insert .= "$row[$j]".$sep;
                 else
                     $schema_insert .= "".$sep;
             }
             //$schema_insert = str_replace($sep."$", "", $schema_insert);
             //following fix suggested by Josue (thanks, Josue!)
             //this corrects output in excel when table fields contain n or r
             //these two characters are now replaced with a space
             //$schema_insert = preg_replace('\n', ' ', $schema_insert);
            //$schema_insert = preg_replace("/n/", "", $schema_insert);         
        $schema_insert = str_replace($sep."$", "", $schema_insert);

        $schema_insert = preg_replace("/\r\n|\n\r|\n|\r/", " ", $schema_insert);

        $schema_insert .= "\t";

        print(trim($schema_insert));

        print "\n";


         }
     }
     ?>

最佳答案

您只需重新格式化包含相关日期的字段,我假设在我的示例中其名为 DateFieldName

在处理查询结果集时,请执行以下操作...

//start while loop to get data
while($row = mysql_fetch_row($result))
{
    list($y,$m,$d) = explode( '-', $row['DateFieldName'] );
    $row['DateFieldName'] = sprintf( '%s-%s-%s', $d, $m, $y );

关于php - 使用 join 时如何将日期字段从数据库反转到 xls 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21110480/

相关文章:

php - Mysql 检索信息时出现问题

javascript - 计算Javascript中的时差,但仅限于某些时间

php - 如何将一个数字四舍五入到能被 16 整除的最接近的数字?

php - 创建我自己的 PHP 框架

mysql - 递归循环 - 父/子树

php - 如何连接到另一台服务器上的数据库

java - 我想在给定日期之后显示明天的日期

c# - 根据今天的日期格式化通用列表中的日期(WPF、DataGrid、C#)

php - Laravel 启动变量在 Controller 中未定义

php - DOMXPath 查询以获取表列中复选框的名称