WP_Session::read_data PHP Method

read_data() protected method

Automatically resets the expiration time for the session transient to some time in the future.
protected read_data ( ) : array
return array
    protected function read_data()
    {
        $this->container = get_option("_wp_session_{$this->session_id}", array());
        return $this->container;
    }