In PHP 5.6 (and probably older versions), session_regenerate_id(true) do not trigger a read() call to the session handler for the new session id.
In PHP 7, read() is triggered during session_regenerate_id(true). Nice to know when working with custom session handlers.