WP_Session_Tokens::destroy

Advertisement

Summery Summery

Destroys the session with the given token.

Syntax Syntax

WP_Session_Tokens::destroy( string $token )

Parameters Parameters

$token

(Required) Session token to destroy.

Source Source

File: wp-includes/class-wp-session-tokens.php

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

Advertisement

Changelog Changelog

Changelog
Version Description
4.0.0 Introduced.

Advertisement

Leave a Reply