WP_Session_Tokens::update() WordPress Method
The WP_Session_Tokens::update() method is used to update an existing session token. This is typically used when a user logs in or out of a site.
WP_Session_Tokens::update( string $token, array $session ) #
Updates the data for the session with the given token.
Parameters
- $token
(string)(Required)Session token to update.
- $session
(array)(Required)Session information.
Source
File: wp-includes/class-wp-session-tokens.php
final public function update( $token, $session ) { $verifier = $this->hash_token( $token ); $this->update_session( $verifier, $session ); }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
4.0.0 | Introduced. |