/**
* Reads the session data from the session storage, and returns the results.
*
* @param string $id The session ID
*
* @return false|string Returns an encoded string of the read data.
* If nothing was read, it must return false.
*/
#[ReturnTypeWillChange]
public function read($id) { if (isset($this->memcached
) &&
$this->
lockSession($id)) { if (!
isset($this->sessionID
)) { $this->sessionID =
$id;
} $data =
(string) $this->memcached->
get($this->keyPrefix .
$id);
$this->fingerprint =
md5($data);
return $data;
}