WP_Session_Tokens::update

Advertisement

Summery Summery

Updates the data for the session with the given token.

Syntax Syntax

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

Parameters Parameters

$token

(Required) Session token to update.

$session

(Required) Session information.

Source 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 );
	}

Advertisement

Changelog Changelog

Changelog
Version Description
4.0.0 Introduced.

Advertisement

Leave a Reply