WC_Session_Handler::update_session_timestamp()publicWC 1.0

Update the session expiry timestamp.

Method of the class: WC_Session_Handler{}

No Hooks.

Return

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 8.7.0

public function update_session_timestamp( $customer_id, $timestamp ) {
	global $wpdb;

	$wpdb->update(
		$this->_table,
		array(
			'session_expiry' => $timestamp,
		),
		array(
			'session_key' => $customer_id,
		),
		array(
			'%d',
		)
	);
}