wp_checkdate

函数
wp_checkdate ( $month, $day, $year, $source_date )
参数
  • (int) $month Month number.
    Required:
  • (int) $day Day number.
    Required:
  • (int) $year Year number.
    Required:
  • (string) $source_date The date to filter.
    Required:
返回值
  • (bool) True if valid date, false if not valid date.
定义位置
相关方法
wp_datewp_authenticatewp_cache_deletewp_richedit_prewp_cache_decr
引入
3.5.0
弃用
-

wp_checkdate:这是一个检查日期是否有效的函数。它可以用来确保用户输入的日期是一个有效的日期,可以在WordPress中使用。

测试提供的日期是否对公历有效。

function wp_checkdate( $month, $day, $year, $source_date ) {
	/**
	 * Filters whether the given date is valid for the Gregorian calendar.
	 *
	 * @since 3.5.0
	 *
	 * @param bool   $checkdate   Whether the given date is valid.
	 * @param string $source_date Date to check.
	 */
	return apply_filters( 'wp_checkdate', checkdate( $month, $day, $year ), $source_date );
}

常见问题

FAQs
查看更多 >