PHP method to return relative time (such as: 20 minutes ago, 3 days ago), PHP days ago_PHP tutorial

WBOY
Release: 2016-07-13 09:57:14
Original
968 people have browsed it

How to return relative time (e.g.: 20 minutes ago, 3 days ago) in php, php days ago

The example in this article describes how php returns relative time (e.g.: 20 minutes ago) , 3 days ago) method. Share it with everyone for your reference. The details are as follows:

function plural($num) {
 if ($num != 1)
  return "s";
}
function getRelativeTime($date) {
 $diff = time() - strtotime($date);
 if ($diff<60)
  return $diff." 秒".plural($diff)." 前";
 $diff = round($diff/60);
 if ($diff<60)
  return $diff." 分钟".plural($diff)." 前";
 $diff = round($diff/60);
 if ($diff<24)
  return $diff." 小时".plural($diff)." 前";
 $diff = round($diff/24);
 if ($diff<7)
  return $diff." 天".plural($diff)." 前";
 $diff = round($diff/7);
 if ($diff<4)
  return $diff." 星期".plural($diff)." 前";
 return "on ".date("F j, Y", strtotime($date));
}
Copy after login

I hope this article will be helpful to everyone’s PHP programming design.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/984005.htmlTechArticlephp method to return relative time (such as: 20 minutes ago, 3 days ago), php days ago This article describes the example php method to return relative time (eg: 20 minutes ago, 3 days ago). Share it with everyone...
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!