WC_Session_Handler::update_session_timestamp()
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() WC Session Handler::update session timestamp code WC 9.6.1
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', ) ); }