W3cubDocs

/WordPress

WP_Session_Tokens::update( string $token, array $session )

Updates the data for the session with the given token.

Parameters

$tokenstringrequired
Session token to update.
$sessionarrayrequired
Session information.

Source

final public function update( $token, $session ) {
	$verifier = $this->hash_token( $token );
	$this->update_session( $verifier, $session );
}

Changelog

Version Description
4.0.0 Introduced.

© 2003–2024 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_session_tokens/update