php - 使用 PHPExcel 函数将日期和日期时间写入 Excel 中作为文本

标签 php wordpress excel date phpexcel

我的 PHPExcel 函数有问题,这是我的代码:

<?php
# Load slim WP
define( 'WP_USE_THEMES', false );
require( './wp-load.php' );
# http://phpexcel.codeplex.com/
require_once dirname(__FILE__) . '/Classes/PHPExcel.php';
global $wpdb;
$query = "Select
  tsales_funnel.ID As ID,
  wp_users.display_name As Darijuma_vaditajs,
  tcportal_starpnieks.Cp_Name As Starpnieks,
  tcportal_stucture.Cp_Name As OWCA,
  n_products.Product_Nos As Produkts,
  tsales_funnel_mrecord.Product_type as Produkta_kods,
    tsales_funnel.Sanems_date as Saņēmšanas_datums,
  tsales_funnel_mrecord.Deadline As Deadline,
  n_sf_statusi.nosaukums_lv As Statuss,
  tsales_funnel_clients.Reg_nr As Klienta_Regnr,
  tfirmas_reg.name_in_quotes As Klients,
  tsales_funnel_mrecord.Faze_date as Faze_date,
  n_sf_fazes.nosaukums_lv As Faze,
  tsales_funnel_mrecord.Summa As Apdrošīnājuma_summa,
  tsales_funnel_mrecord.Vien_skaits As TRL_skaits,
  tsales_funnel_mrecord.Compensa_cena,
  tsales_funnel_mrecord.Tirgus_cena,
  wp_users02.display_name As Riska_parakstitajs,
  comm.Comment as Aizveršanas_komentārs
From
  tsales_funnel Left Join
  tsales_funnel_mrecord On tsales_funnel.ID = tsales_funnel_mrecord.Funnel_ID
  Left Join
  tcportal_starpnieks On tcportal_starpnieks.Cp_code = tsales_funnel.Starpnieks
  Left Join
  tcportal_stucture On tcportal_stucture.Cp_code = tsales_funnel.OWCA Left Join
  tsales_funnel_clients On tsales_funnel_clients.Funnel_ID = tsales_funnel.ID
  Left Join
  tfirmas_reg On tfirmas_reg.regcode = tsales_funnel_clients.Reg_nr Left Join
  wp_users On tsales_funnel.Darijuma_vaditajs = wp_users.user_login Left Join
  n_sf_statusi On n_sf_statusi.id = tsales_funnel.Statuss
  Left Join n_sf_fazes on tsales_funnel_mrecord.Product_faze = n_sf_fazes.id
   Left Join
  n_products On tsales_funnel_mrecord.Product_type = n_products.Product_Code
  Left Join
  (SELECT * FROM tsales_funnel_comments WHERE Comm_type = 4) as comm On tsales_funnel.ID = comm.Funnel_ID
  Left Join
  wp_users As wp_users02
    On wp_users02.user_login = tsales_funnel_mrecord.Risk_acceptance
WHERE 
tsales_funnel_clients.Tips_Galvenais = 1
";
$error = "Error: the query failed...
    <pre style='width:700px;word-wrap:break-word;white-space:normal;'>$query</pre>";
$result = $wpdb->get_results( $query, ARRAY_A ) or wp_die( $error );
$objPHPExcel = new PHPExcel(); 
$objPHPExcel->getProperties()
        ->setCreator("user")
            ->setLastModifiedBy("user")
        ->setTitle("Office 2007 XLSX Test Document")
        ->setSubject("Office 2007 XLSX Test Document")
        ->setDescription("Test document for Office 2007 XLSX, generated using PHP classes.")
        ->setKeywords("office 2007 openxml php")
        ->setCategory("Test result file");
// Set the active Excel worksheet to sheet 0
$objPHPExcel->setActiveSheetIndex(0); 
// Initialise the Excel row number
$rowCount = 0; 
// Sheet cells
$cell_definition = array(
    'A' => 'ID',
    'B' => 'Darijuma_vaditajs',
    'C' => 'Starpnieks',
    'D' => 'OWCA',
    'E' => 'Produkts',
    'F' => 'Produkta_kods',
    'G' => 'Saņēmšanas_datums',
    'H' => 'Deadline',
    'I' => 'Statuss',
    'J' => 'Klienta_Regnr',
    'K' => 'Klients',
    'L' => 'Faze_date',
    'M' => 'Faze',
    'N' => 'Apdrošīnājuma_summa',
    'O' => 'TRL_skaits',
    'P' => 'Compensa_cena',
    'Q' => 'Tirgus_cena',
    'R' => 'Riska_parakstitajs',
    'S' => 'Aizveršanas_komentārs'
);
// Build headers
foreach( $cell_definition as $column => $value )
    $objPHPExcel->getActiveSheet()->setCellValue( "{$column}1", $value ); 
// Build cells
while( $rowCount < count($result) ){ 
    $cell = $rowCount + 2;
    foreach( $cell_definition as $column => $value ){
        switch($column) {
            case 'G';
            case 'H';
            $val = '=DATEVALUE("'.date('Y.m.d',strtotime($result[$rowCount][$value])).'")';
        $objPHPExcel->getActiveSheet()->setCellValue($column.$cell, $val);
        break;
        case 'L';
        $val = date('Y.m.d H:i:s',strtotime($result[$rowCount][$value]));
        $objPHPExcel->getActiveSheet()->getStyle($column.$cell)
            ->getNumberFormat()
            ->setFormatCode("yyyy.mm.dd h:mm");
        $objPHPExcel->getActiveSheet()->setCellValue($column.$cell, $val);
        break;
        default;
        $val = $result[$rowCount][$value];
        $objPHPExcel->getActiveSheet()->setCellValue($column.$cell, $val);
        }
        }
    $rowCount++; 
} 
header('Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet');
header('Content-Disposition: attachment;filename="iPortal_Atskaite_'.date('Y-m-d_H.i.s', strtotime('+3 hour')).'.xlsx"');
header('Cache-Control: max-age=0');
$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007');
$objWriter->save('php://output');
exit;

我正在使用列开关,我需要不同的单元格格式。

G 列和 H 列我需要格式 2015.10.05 (yyyy.mm.dd) 以及 L 列 2015.10.05 12:03 (yyyy.mm.dd H:i)。

函数 getStyle() 不起作用,并返回相同的值。如果输出为=datevalue,这是excel函数,一切都可以,但它不能与时间一起工作。

此外,如果我按 Excel 中的编辑单元格并按 Enter,该日期将转换为 Excel 的正常日期,并且一切正常。

所以,问题出在输出格式上。我该如何定义它?对于其他列,例如数字,一切都可以。

最佳答案

您需要将日期和日期/时间转换为 MS Excel 序列化日期时间戳....MS Excel 不会自动将字符串转换为日期,也不会简单地设置样式来更改实际值(中的字符串)您的案例)以任何方式存储在单元格中。

PHPExcel 在 PHPExcel_Shared_Date 类中提供了几种不同的方法,可以让您执行这些转换。

$dto = new DateTime($result[$rowCount][$value]);
$dateVal = PHPExcel_Shared_Date::PHPToExcel($dto);
$objPHPExcel->getActiveSheet()->getStyle($column.$cell)
    ->getNumberFormat()
    ->setFormatCode("yyyy.mm.dd h:mm");
$objPHPExcel->getActiveSheet()->setCellValue($column.$cell, $dateVal);

关于php - 使用 PHPExcel 函数将日期和日期时间写入 Excel 中作为文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32944964/

相关文章:

c# - PHP SHA1 与 PasswordDeriveBytes SHA1 - 不同的长度

css - 图像伸出 body [wordpress 主题]

php - 如何从 WordPress 插件中的函数下载 CSV 文件?

vba - 如何使用 Excel VBA 获取阿拉伯月份名称

vba - 从Excel VBA关闭Word应用程序

php - 通过包含上次访问 URL 的电子邮件报告错误 404

php - 为 CouchDB 减少 PHPillow 中的函数

php - 使查看源代码中的html出现在每一行

mysql - 抓取多行 MYSQL 连接

.net - 在没有安装officebeeing的情况下读取excel文件