WC_Payment_Token_CC::set_expiry_month()publicWC 2.6.0

Set the expiration month for the card (formats into MM format).

Method of the class: WC_Payment_Token_CC{}

No Hooks.

Return

null. Nothing (null).

Usage

$WC_Payment_Token_CC = new WC_Payment_Token_CC();
$WC_Payment_Token_CC->set_expiry_month( $month );
$month(string) (required)
Credit card expiration month.

Changelog

Since 2.6.0 Introduced.

WC_Payment_Token_CC::set_expiry_month() code WC 8.7.0

public function set_expiry_month( $month ) {
	$this->set_prop( 'expiry_month', str_pad( $month, 2, '0', STR_PAD_LEFT ) );
}