Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我不是 PHP 新手,而是 PHPExcel 新手,第一次使用它。所以我更喜欢将数据从 excel 表转储到数组中
$importData = $objImport->getActiveSheet()->toArray(null,true,true,true);
但问题是日期值以 mm-dd-yy 格式返回,因此 2013 年和 1913 年都以 yy 形式返回为“13”。我想以 yyyy 的形式收到它。
尝试这个
$fDate = $importData[1][C]; $fDate='10-29-14'; $fDate= explode('-', $fDate); $fDate=$fDate[1].'-'.$fDate[0].'-'.str_pad('14', 4, '20',STR_PAD_LEFT); echo $fDate;// 29-10-2014