Return to Snippet

Revision: 15996
at July 22, 2009 13:38 by Unreal


Initial Code
function _ago($tm,$rcs = 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(($rcs == 1)&&($v >= 1)&&(($cur_tm-$_tm) > 0)) $x .= time_ago($_tm);
    return $x;
}

Initial URL
http://www.devwords.com

Initial Description
This snippet will format time() into something a bit more user friendly. Title explains it better.

Initial Title
time() Format - How many seconds/minutes/hours/days/years/decades ago

Initial Tags


Initial Language
PHP