WP_Session_Tokens::update_session()
Updates a session based on its verifier (token hash).
Omitting the second argument destroys the session.
Method of the class: WP_Session_Tokens{}
No Hooks.
Return
null
. Nothing.
Usage
// protected - for code of main (parent) or child class $result = $this->update_session( $verifier, $session );
- $verifier(string) (required)
- Verifier for the session to update.
- $session(array)
- Session. Omitting this argument destroys the session.
Default: null
Changelog
Since 4.0.0 | Introduced. |
WP_Session_Tokens::update_session() WP Session Tokens::update session code WP 6.1.1
abstract protected function update_session( $verifier, $session = null );