Summery Summery
Gets the session identifier from the cookie.
Syntax Syntax
Description Description
The cookie should be validated before calling this API.
Parameters Parameters
- $cookie
-
(Optional) y specify the cookie string. If omitted, it will be retrieved from the super global.
Default value: ''
Return Return
(string|WP_Error) Session ID on success, or error object on failure.
Source Source
File: wp-includes/class-wp-recovery-mode-cookie-service.php
public function get_session_id_from_cookie( $cookie = '' ) {
if ( ! $cookie ) {
if ( empty( $_COOKIE[ RECOVERY_MODE_COOKIE ] ) ) {
return new WP_Error( 'no_cookie', __( 'No cookie present.' ) );
}
$cookie = $_COOKIE[ RECOVERY_MODE_COOKIE ];
}
$parts = $this->parse_cookie( $cookie );
if ( is_wp_error( $parts ) ) {
return $parts;
}
list( , , $random ) = $parts;
return sha1( $random );
}
Advertisement
Changelog Changelog
| Version | Description |
|---|---|
| 5.2.0 | Introduced. |