首页 > 开发 > PHP > 正文

php将日期格式转换成xx天前的格式

2024-05-04 23:34:21
字体:
来源:转载
供稿:网友

这篇文章主要介绍了php将日期格式转换成xx天前的格式,涉及php时间操作及正则匹配的技巧,非常具有实用价值,需要的朋友可以参考下

本文实例讲述了php将日期格式转换成xx天前格式的方法。分享给大家供大家参考。具体如下:

这段代码可以把时间格式化成3天前,5秒前,2年前的形式

 

 
  1. // convert a date into a string that tells how long ago 
  2. // that date was.... eg: 2 days ago, 3 minutes ago. 
  3. function ago($d) { 
  4. $c = getdate(); 
  5. $p = array('year''mon''mday''hours''minutes''seconds'); 
  6. $display = array('year''month''day''hour''minute''second'); 
  7. $factor = array(0, 12, 30, 24, 60, 60); 
  8. $d = datetoarr($d); 
  9. for ($w = 0; $w < 6; $w++) { 
  10. if ($w > 0) { 
  11. $c[$p[$w]] += $c[$p[$w-1]] * $factor[$w]; 
  12. $d[$p[$w]] += $d[$p[$w-1]] * $factor[$w]; 
  13. if ($c[$p[$w]] - $d[$p[$w]] > 1) {  
  14. return ($c[$p[$w]] - $d[$p[$w]]).' '.$display[$w].'s ago'
  15. return ''
  16. // you can replace this if need be.  
  17. // This converts my dates returned from a mysql date string  
  18. // into an array object similar to that returned by getdate(). 
  19. function datetoarr($d) { 
  20. preg_match("/([0-9]{4})(//-)([0-9]{2})(//-)([0-9]{2})([0-9]{2})(//:)([0-9]{2})(//:)([0-9]{2})/",$d,$matches); 
  21. return array(  
  22. 'seconds' => $matches[10],  
  23. 'minutes' => $matches[8],  
  24. 'hours' => $matches[6],  
  25. 'mday' => $matches[5],  
  26. 'mon' => $matches[3],  
  27. 'year' => $matches[1],  
  28. ); 

希望本文所述对大家的php程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表