Convert Unix time to now in PHP

A Unix timestamp looks like 1514452438 if you wanted to output how long ago this was such as 4 days, 18 hours, 44 minutes and 15 seconds in PHP here is a handy function

function timeDiff($timestamp)
{
    $how_long_ago = '';
    $seconds = time() - $timestamp;
    $minutes = (int)($seconds / 60);
    $hours = (int)($minutes / 60);
    $days = (int)($hours / 24);
    if ($days >= 1) {
        $how_long_ago = $days . ' day' . ($days != 1 ? 's' : '');
    } else if ($hours >= 1) {
        $how_long_ago = $hours . ' hour' . ($hours != 1 ? 's' : '');
    } else if ($minutes >= 1) {
        $how_log_ago = $minutes . ' minute' . ($minutes != 1 ? 's' : '');
    } else {
        $how_long_ago = $seconds . ' second' . ($seconds != 1 ? 's' : '');
    }
    return $how_long_ago;
}

simply call the function with your Unix timestamp to be converted like:

echo timeDiff(1514452438);