我在名为created_at的数据库中有一个字段,并以这种格式存储数据:
1980-11-28 04:05:25
所以我想知道自那个日期以来已经过了多少时间,例如:3秒|| 5分钟|| 22小时|| 1天|| 6周|| 1个月|| 3年(注意||所以这些选项中的任何一个都不是全部)。我不知道我是否可以直接从查询中获得这个意思,这意味着使用SQL语言并且我检查了这个[1]但是找不到正确的函数来执行此操作。所以我认为使用PHP得到它,但要么不知道如何。可以帮助我吗?
[1] http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html
答案 0 :(得分:1)
我不确定是否有允许您执行此操作的本机PHP函数,但您可以创建一个。我在http://css-tricks.com/snippets/php/time-ago-function/找到了这个并对其进行了编辑,使其更具功能性。
使用此功能,我们只需将created_at
字符串放入其中即可获得结果。
// The function to get the final string
function timeago($tm,$lim=0) {
$cur_tm = time(); $dif = $cur_tm-$tm;
$pds = array('second','minute','hour','day','week','month','year','decade');
$lngh = array(1,60,3600,86400,604800,2630880,31570560,315705600);
for($v = sizeof($lngh)-1; ($v >= 0)&&(($no = $dif/$lngh[$v])<=1); $v--); if($v < 0) $v = 0; $_tm = $cur_tm-($dif%$lngh[$v]);
$no = floor($no); if($no <> 1) $pds[$v] .='s'; $x=sprintf("%d %s",$no,$pds[$v]);
if($lim>1 && ($v >= 1)&&(($cur_tm-$_tm) > 0)) $x .= ', ' . timeago($_tm,$lim-1); else $x .= ' ago';
return $x;
}
// Run the MySQL query to get the string
$query = mysql_query("SELECT `created_at` FROM `table` LIMIT 1");
// Put the string into a PHP variable
$created_at = mysql_result($query,0);
// Show the results
echo timeago($created_at);
// This will output something like '4 years ago' or '12 seconds ago'
// You can fine tune how accurate you want the function to make your 'time ago' string to be by adding a number as the second variable for the function
// For example:
echo timeago($created_at, 6);
// This will output something like '4 decades, 2 years, 7 months, 1 week, 15 hours, 49 minutes, 12 seconds ago'