Date PHPExcel:1.7.4和1.7.6之间的日期格式差异

Date PHPExcel:1.7.4和1.7.6之间的日期格式差异,date,format,phpexcel,Date,Format,Phpexcel,我在两个PHPExcel版本(相同的服务器、相同的代码、相同的数据)之间使用相同的代码得到了两个不同的结果。我试过两种在牢房里写字的方法,同样的行为 PHPExcel_Cell::setValueBinder( new PHPExcel_Cell_AdvancedValueBinder() ); $sheet->getStyleByColumnAndRow($col,$i)->getAlignment()->setHorizontal(PHPExcel_Style_Alignm

我在两个PHPExcel版本(相同的服务器、相同的代码、相同的数据)之间使用相同的代码得到了两个不同的结果。我试过两种在牢房里写字的方法,同样的行为

PHPExcel_Cell::setValueBinder( new PHPExcel_Cell_AdvancedValueBinder() );
$sheet->getStyleByColumnAndRow($col,$i)->getAlignment()->setHorizontal(PHPExcel_Style_Alignment::HORIZONTAL_CENTER);
$sheet->setCellValueByColumnAndRow($col,$i,$myDate->format('Y-m-d'));
//Or this line:
//$sheet->setCellValueByColumnAndRow($col,$i,PHPExcel_Shared_Date::stringToExcel($myDate->format('Y-m-d')));
$sheet->getStyleByColumnAndRow($col,$i)->getNumberFormat()->setFormatCode(PHPExcel_Style_NumberFormat::FORMAT_DATE_YYYYMMDDSLASH);
在1.7.4-->dd/mm/YYYY中,这就是我想要的 在1.7.6-->YY/m/d丑陋!!!! 我的代码怎么了? 谢谢你的帮助 美国