public function SessionHandler::read in Drupal 9
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Session/SessionHandler.php \Drupal\Core\Session\SessionHandler::read()
File
- core/
lib/ Drupal/ Core/ Session/ SessionHandler.php, line 56
Class
- SessionHandler
- Default session handler.
Namespace
Drupal\Core\SessionCode
public function read($sid) {
$data = '';
if (!empty($sid)) {
// Read the session data from the database.
$query = $this->connection
->queryRange('SELECT [session] FROM {sessions} WHERE [sid] = :sid', 0, 1, [
':sid' => Crypt::hashBase64($sid),
]);
$data = (string) $query
->fetchField();
}
return $data;
}