1

好的,我在这个主题上找到了很多线程,但找不到一个似乎对我有用的线程。

我有一个正在运行的脚本,但前提是输入日期是今天,但我有一个日期,例如,它是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;
}

谁能看到可能导致它显示错误信息的原因?

4

1 回答 1

0

固定的。我添加了以下内容。我的错误报告需要一点时间才能通过,所以我一开始没有看到它们

if(empty($timestamp)) {
    return "No date provided";
} else {
    $timestamp = strtotime($timestamp);
}
于 2013-07-10T22:52:44.880 回答