On this page
WP_Session_Tokens::is_still_valid( array $session ): bool
Determines whether a session is still valid, based on its expiration timestamp.
Parameters
$sessionarray Required-
Session to check.
Return
bool Whether session is valid.
Source
File: wp-includes/class-wp-session-tokens.php. View all references
final protected function is_still_valid( $session ) {
return $session['expiration'] >= time();
}
Changelog
| Version | Description |
|---|---|
| 4.0.0 | Introduced. |
© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_session_tokens/is_still_valid