This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// This function will return "now", "3 seconds ago", "1 month ago" etc ... | |
// example: echo 'posted ' . get_the_relative_time(mktime(date("H"), date("i"), date("s"), date("m")-1, date("d"), date("Y"))); | |
function get_the_relative_time($time = null, $now = 20) { | |
if(is_null($time)) $time = date('U'); | |
$time_diff = date("U") - $time; // difference in seconds | |
$second = 1; |