WC_Session_Handler::update_session_timestamppublicWC 1.0

Update the session expiry timestamp.

Method of the class: WC_Session_Handler{}

No Hooks.

Returns

null. Nothing (null).

Usage

$WC_Session_Handler = new WC_Session_Handler();
$WC_Session_Handler->update_session_timestamp( $customer_id, $timestamp );
$customer_id(string) (required)
Customer ID.
$timestamp(int) (required)
Timestamp to expire the cookie.

WC_Session_Handler::update_session_timestamp() code WC 10.3.5

public function update_session_timestamp( $customer_id, $timestamp ) {
	if ( ! $customer_id ) {
		return;
	}
	$GLOBALS['wpdb']->update( $this->_table, array( 'session_expiry' => $timestamp ), array( 'session_key' => $customer_id ), array( '%d' ) );
}