网站地图    收藏   

主页 > php专栏 > php日期 >

datetime类型日期时间转换成中文表示 - php日期

来源:自学PHP网    时间:2014-11-30 11:50 作者: 阅读:

[导读] 下面是一个将datetime日期时间转换成年 39;, 39;个月 39;, 39;天 39;, 39;小时 39;, 39;分种 39;, 39;秒...

datetime类型日期时间转换成中文表示

下面是一个将datetime日期时间转换成年\', \'个月\', \'天\', \'小时\', \'分种\', \'秒\'来显示,有需要的朋友可以参考一下。

  1. /**  
  2. * 友好日期时间  
  3.  
  4. * @param DateTime $datetime 日期时间  
  5. * @param int $size 精确到位数  
  6. * @throws InvalidArgumentException  
  7. * @return string  
  8. */  
  9. function friendly_date($datetime$size=1)  
  10. {  
  11. if (is_int($datetime)) {  
  12. $datetime = new DateTime($datetime);  
  13. }  
  14. if (!($datetime instanceof DateTime)) {  
  15. throw new InvalidArgumentException('invalid "DateTime" object');  
  16. }  
  17. $now = new DateTime();  
  18. $interval = $now->diff($datetime);  
  19. $intervalData = array(  
  20. $interval->y, $interval->m, $interval->d,  
  21. $interval->h, $interval->i, $interval->s,  
  22. );  
  23. $intervalFormat = array('年''个月''天''小时''分种''秒');  
  24. foreach($intervalData as $index=>$value) {  
  25. if ($value) {  
  26. $intervalData[$index] = $value . $intervalFormat[$index];  
  27. else {  
  28. unset($intervalData[$index]);  
  29. unset($intervalFormat[$index]);  
  30. }  
  31. }  
  32. return implode(''array_slice($intervalData, 0, $size));  

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论