WC_Payment_Token_CC::get_expiry_month()publicWC 2.6.0

Returns the card expiration month (MM).

Method of the class: WC_Payment_Token_CC{}

No Hooks.

Return

String. Expiration month

Usage

$WC_Payment_Token_CC = new WC_Payment_Token_CC();
$WC_Payment_Token_CC->get_expiry_month( $context );
$context(string)
What the value is for. Valid values are view and edit.
Default: 'view'

Changelog

Since 2.6.0 Introduced.

WC_Payment_Token_CC::get_expiry_month() code WC 8.7.0

public function get_expiry_month( $context = 'view' ) {
	return $this->get_prop( 'expiry_month', $context );
}