PHP中的日期差异人工格式输出


Date Diff Human Format Output in PHP

好的,我已经找到了很多关于这个主题的线程,但找不到一个似乎适合我的线程。

我有一个正在运行的脚本,但前提是输入日期是今天,但我有一一个日期,例如Sunday 7th of July at 10:51am,它显示为Thursday at 12:33 pm,任何超过一周的都显示为January 1 at 12:33 pm

到目前为止,这是我的脚本(输入日期$timestamp的格式为Y-m-d H:i:s

function dateDiff($timestamp) {
if(empty($timestamp)) {
    return "No date provided";
}
// Get time difference and setup arrays
$unix_date = strtotime($timestamp);
if(empty($unix_date)) {    
    return "Bad date";
}
$difference = time() - $unix_date;
$periods = array("second", "minute", "hour", "day", "week", "month", "years");
$lengths = array("60","60","24","7","4.35","12"); 
// Past or present
if ($difference >= 0) {
    $ending = "ago";
} else {
    $difference = -$difference;
    $ending = "to go";
} 
// Figure out difference by looping while less than array length
// and difference is larger than lengths.
$arr_len = count($lengths);
for($j = 0; $j < $arr_len && $difference >= $lengths[$j]; $j++) {
    $difference /= $lengths[$j];
} 
// Round up     
$difference = round($difference); 
// Make plural if needed
if($difference != 1) {
    $periods[$j].= "s";
} 
// Default format
$text = $difference." ".$periods[$j]." ".$ending; 
// over 24 hours
if($j > 2) {
    // future date over a day formate with year
    if($ending == "to go") {
        if($j == 3 && $difference == 1) {
            $text = "Tomorrow at ". date("g:i a", $timestamp);
        } else {
            $text = date("F j, Y 'a''t g:i a", $timestamp);
        }
        return $text;
    } 
    if($j == 3 && $difference == 1) { // Yesterday
        $text = "Yesterday at ". date("g:i a", $timestamp);
    } else if($j == 3) { // Less than a week display -- Monday at 5:28pm
        $text = date("l 'a''t g:i a", $timestamp);
    } else if($j < 6 && !($j == 5 && $difference == 12)) { // Less than a year display -- June 25 at 5:23am
        $text = date("F j 'a''t g:i a", $timestamp);
    } else { // if over a year or the same month one year ago -- June 30, 2010 at 5:34pm
        $text = date("F j, Y 'a''t g:i a", $timestamp);
    }
} 
return $text;
}

有人能看到是什么让它显示错误的信息吗??

已修复。我添加了以下内容。我的错误报告花了一点时间才通过,所以我在第一次时没有看到它们

if(empty($timestamp)) {
    return "No date provided";
} else {
    $timestamp = strtotime($timestamp);
}