当前位置:首页 > PHP教程 > php应用 > 列表

PHPExcel导入Excel文件并对其日期单元格处理的代码示例

发布:smiling 来源: PHP粉丝网  添加日期:2019-12-25 09:37:08 浏览: 评论:0 

本篇文章给大家带来的内容是关于PHPExcel导入Excel文件并对其日期单元格处理的代码示例,有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助。

PHPExcel导入Excel文件,对Excel中日期单元格处理:

  1. /** 
  2.  
  3.  * 判断字符串是否是日期格式 
  4.  
  5.  * @param $date 
  6.  
  7.  * @param $format 
  8.  
  9.  * @return bool 
  10.  
  11.  */ 
  12.  
  13. function is_date($date$format = 'Y-m-d'
  14.  
  15.  
  16.   if (!$date || $date == '0000-00-00'return false; 
  17.  
  18.   $unix_time_1 = strtotime($date); 
  19.  
  20.   if (!is_numeric($unix_time_1)) return false; //非数字格式 
  21.  
  22.   $format_date = date($format$unix_time_1); 
  23.  
  24.   $unix_time_2 = strtotime($format_date); 
  25.  
  26.   return ($unix_time_1 == $unix_time_2); 
  27.  
  28.  
  29. /** 
  30.  
  31.  * excel数据导入  日期格式化 
  32.  
  33.  * @param $date 
  34.  
  35.  * @return false|string 
  36.  
  37.  */ 
  38.  
  39. function get_date_by_excel($date
  40.  
  41.  
  42.   if (!$date || $date == '0000-00-00'return null; 
  43.  
  44.   
  45.  
  46.   $unix_time = \PHPExcel_Shared_Date::ExcelToPHP($date); 
  47.  
  48.   
  49.  
  50.   return ($unix_time < 0) ? date('Y-m-d'$unix_time) : date('Y-m-d'strtotime(gmdate('Y-m-d'$unix_time))); 
  51.  
  52.  
  53. /** 
  54.  
  55.  * 获取excel日期格式化结果 
  56.  
  57.  * @param $date string excel日期单元格字符串 
  58.  
  59.  * @param $default string  $date未非日期时返回默认日期 
  60.  
  61.  * @return string 
  62.  
  63.  */ 
  64.  
  65. function excel_date_format($date$default = ''
  66. //phpfensi.com 
  67.  
  68.   if ($default == ''$default = date('Y-m-d'); 
  69.  
  70.   if (is_date($date)) return $date
  71.  
  72.   return get_date_by_excel($date) ?: $default
  73.  

以上就是PHPExcel导入Excel文件并对其日期单元格处理的代码示例的详细内容。

Tags: PHPExcel导入Excel

分享到: