WP_Session_Tokens::verify

Advertisement

Summery Summery

Validates the given session token for authenticity and validity.

Syntax Syntax

WP_Session_Tokens::verify( string $token )

Description Description

Checks that the given token is present and hasn’t expired.

Parameters Parameters

$token

(Required) Token to verify.

Return Return

(bool) Whether the token is valid for the user.

Source Source

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

	final public function verify( $token ) {
		$verifier = $this->hash_token( $token );
		return (bool) $this->get_session( $verifier );
	}

Advertisement

Changelog Changelog

Changelog
Version Description
4.0.0 Introduced.

Advertisement

Leave a Reply