From 309360dac02905354483371267f86fc0598c602d Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Mon, 27 Mar 2017 10:59:43 +0800 Subject: [PATCH] SimpleExcel.php --- SimpleExcel.php | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/SimpleExcel.php b/SimpleExcel.php index 9cf26afe..484808cb 100644 --- a/SimpleExcel.php +++ b/SimpleExcel.php @@ -377,7 +377,13 @@ class Pman_Core_SimpleExcel extends Pman $format = isset($col_cfg['format']) && isset($formats[$col_cfg['format']] ) ? $formats[$col_cfg['format']] : false; // print_R(array($start_row+$r, $c, $v, $format));exit; // handle 0 prefixes.. - if ( (is_numeric($v) && strlen($v) > 1 && substr($v,0,1) == '0' && substr($v,1,1) != '.') + + if (preg_match('/^[0-9]{4}-[0-9]{2}-[0-9]{2}$/', $v)) { + $dataFormat = 'date'; + $format = empty($format) ? 'YYYY-MM-DD' : $format; + } + + if ( (is_numeric($v) && strlen($v) > 1 && substr($v,0,1) == '0' && substr($v,1,1) != '.' ) || $dataFormat == 'string' ) { $worksheet->writeString($start_row+$r, $c, $v, $format); -- 2.39.2