API16

JSessionStorageDatabase/read

From Joomla! Documentation

< API16:JSessionStorageDatabase
Revision as of 17:40, 22 March 2010 by Doxiki (talk | contribs) (New page: ===Description=== Read the data for a particular session identifier from the SessionHandler backend. <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>[[Description:...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

The "API16" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

Description[edit]

Read the data for a particular session identifier from the SessionHandler backend.

[Edit Descripton]

Template:Description:JSessionStorageDatabase/read

Syntax[edit]

read($id)
Parameter Name Default Value Description
$id The session identifier.

Returns[edit]

string The session data.

Defined in[edit]

libraries/joomla/session/storage/database.php

Importing[edit]

jimport( 'joomla.session.storage.database' );

Source Body[edit]

public function read($id)
{
        // Get the database connection object and verify its connected.
        $db = &JFactory::getDbo();
        if (!$db->connected()) {
                return false;
        }

        // Get the session data from the database table.
        $db->setQuery(
                'SELECT `data`' .
                ' FROM `#__session`' .
                ' WHERE `session_id` = '.$db->quote($id)
        );
        return (string) $db->loadResult();
}

[Edit See Also] Template:SeeAlso:JSessionStorageDatabase/read

Examples[edit]

<CodeExamplesForm />