函数文档

human_time_diff()

💡 云策文档标注

概述

human_time_diff() 是 WordPress 核心函数,用于计算两个 Unix 时间戳之间的差异,并以人类可读的格式(如“1 小时”、“5 分钟”)返回字符串。它支持可选的第二个参数,默认使用当前时间。

关键要点

  • 函数返回两个时间戳之间的差异,格式化为易于理解的字符串。
  • 参数 $from 是必需的起始时间戳,$to 是可选的结束时间戳,默认为 time()。
  • 支持通过 apply_filters('human_time_diff', ...) 钩子过滤输出。
  • 在 WordPress 5.3.0 版本中增加了对秒级差异的支持。
  • 常用于显示文章、评论或修改时间的相对时间信息。

代码示例

// 基本用法:计算从指定时间到当前时间的差异
echo human_time_diff( get_the_time('U') ) . ' ago';

// 国际化和更安全的用法示例
printf( 
    esc_html__( '%s ago', 'textdomain' ), 
    human_time_diff( get_the_modified_time('U'), strtotime( wp_date('Y-m-d H:i:s') ) ) 
);

注意事项

  • 确保传入的时间戳是 Unix 格式,否则可能导致错误结果。
  • 使用国际化函数(如 esc_html__ 或 _x)包装输出,以支持多语言站点。
  • 注意函数内部使用 MINUTE_IN_SECONDS、HOUR_IN_SECONDS 等常量进行时间单位转换。

📄 原文内容

Determines the difference between two timestamps.

Description

The difference is returned in a human-readable format such as “1 hour”, “5 minutes”, “2 days”.

Parameters

$fromintrequired
Unix timestamp from which the difference begins.
$tointoptional
Unix timestamp to end the time difference. Default becomes time() if not set.

Return

string Human-readable time difference.

Source

function human_time_diff( $from, $to = 0 ) {
	if ( empty( $to ) ) {
		$to = time();
	}

	$diff = (int) abs( $to - $from );

	if ( $diff < MINUTE_IN_SECONDS ) {
		$secs = $diff;
		if ( $secs <= 1 ) {
			$secs = 1;
		}
		/* translators: Time difference between two dates, in seconds. %s: Number of seconds. */
		$since = sprintf( _n( '%s second', '%s seconds', $secs ), $secs );
	} elseif ( $diff < HOUR_IN_SECONDS && $diff >= MINUTE_IN_SECONDS ) {
		$mins = round( $diff / MINUTE_IN_SECONDS );
		if ( $mins <= 1 ) {
			$mins = 1;
		}
		/* translators: Time difference between two dates, in minutes. %s: Number of minutes. */
		$since = sprintf( _n( '%s minute', '%s minutes', $mins ), $mins );
	} elseif ( $diff < DAY_IN_SECONDS && $diff >= HOUR_IN_SECONDS ) {
		$hours = round( $diff / HOUR_IN_SECONDS );
		if ( $hours <= 1 ) {
			$hours = 1;
		}
		/* translators: Time difference between two dates, in hours. %s: Number of hours. */
		$since = sprintf( _n( '%s hour', '%s hours', $hours ), $hours );
	} elseif ( $diff < WEEK_IN_SECONDS && $diff >= DAY_IN_SECONDS ) {
		$days = round( $diff / DAY_IN_SECONDS );
		if ( $days <= 1 ) {
			$days = 1;
		}
		/* translators: Time difference between two dates, in days. %s: Number of days. */
		$since = sprintf( _n( '%s day', '%s days', $days ), $days );
	} elseif ( $diff < MONTH_IN_SECONDS && $diff >= WEEK_IN_SECONDS ) {
		$weeks = round( $diff / WEEK_IN_SECONDS );
		if ( $weeks <= 1 ) {
			$weeks = 1;
		}
		/* translators: Time difference between two dates, in weeks. %s: Number of weeks. */
		$since = sprintf( _n( '%s week', '%s weeks', $weeks ), $weeks );
	} elseif ( $diff < YEAR_IN_SECONDS && $diff >= MONTH_IN_SECONDS ) {
		$months = round( $diff / MONTH_IN_SECONDS );
		if ( $months <= 1 ) {
			$months = 1;
		}
		/* translators: Time difference between two dates, in months. %s: Number of months. */
		$since = sprintf( _n( '%s month', '%s months', $months ), $months );
	} elseif ( $diff >= YEAR_IN_SECONDS ) {
		$years = round( $diff / YEAR_IN_SECONDS );
		if ( $years <= 1 ) {
			$years = 1;
		}
		/* translators: Time difference between two dates, in years. %s: Number of years. */
		$since = sprintf( _n( '%s year', '%s years', $years ), $years );
	}

	/**
	 * Filters the human-readable difference between two timestamps.
	 *
	 * @since 4.0.0
	 *
	 * @param string $since The difference in human-readable text.
	 * @param int    $diff  The difference in seconds.
	 * @param int    $from  Unix timestamp from which the difference begins.
	 * @param int    $to    Unix timestamp to end the time difference.
	 */
	return apply_filters( 'human_time_diff', $since, $diff, $from, $to );
}

Hooks

apply_filters( ‘human_time_diff’, string $since, int $diff, int $from, int $to )

Filters the human-readable difference between two timestamps.

Changelog

Version Description
5.3.0 Added support for showing a difference in seconds.
1.5.0 Introduced.

User Contributed Notes