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

Updates the data for the session with the given token.


Description Description


Parameters Parameters

$token

(string) (Required) Session token to update.

$session

(array) (Required) Session information.


Top ↑

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

Top ↑

Changelog Changelog

Changelog
Version Description
4.0.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.