이 기사는 PHPExcel에서 Excel 파일을 가져오고 날짜 셀을 처리하는 방법에 대한 코드 예제를 제공합니다. 필요한 친구가 참고할 수 있기를 바랍니다.
PHPExcel은 Excel 파일을 가져오고 Excel에서 날짜 셀을 처리합니다
/** * 判断字符串是否是日期格式 * @param $date * @param $format * @return bool */ function is_date($date, $format = 'Y-m-d') { if (!$date || $date == '0000-00-00') return false; $unix_time_1 = strtotime($date); if (!is_numeric($unix_time_1)) return false; //非数字格式 $format_date = date($format, $unix_time_1); $unix_time_2 = strtotime($format_date); return ($unix_time_1 == $unix_time_2); } /** * excel数据导入 日期格式化 * @param $date * @return false|string */ function get_date_by_excel($date) { if (!$date || $date == '0000-00-00') return null; $unix_time = \PHPExcel_Shared_Date::ExcelToPHP($date); return ($unix_time < 0) ? date('Y-m-d', $unix_time) : date('Y-m-d', strtotime(gmdate('Y-m-d', $unix_time))); } /** * 获取excel日期格式化结果 * @param $date string excel日期单元格字符串 * @param $default string $date未非日期时返回默认日期 * @return string */ function excel_date_format($date, $default = '') { if ($default == '') $default = date('Y-m-d'); if (is_date($date)) return $date; return get_date_by_excel($date) ?: $default; }
위 내용은 Excel 파일을 가져오고 날짜 셀을 처리하는 PHPExcel의 코드 예제의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!