API16

API16:JSessionStorageDatabase/open

From Joomla! Documentation

Description

Open the SessionHandler backend.



Syntax

open($save_path, $session_name)
Parameter Name Default Value Description
$save_path The path to the session object.
$session_name The name of the session.

Returns

boolean True on success, false otherwise.

Defined in

libraries/joomla/session/storage/database.php

Importing

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

Source Body

public function open($save_path, $session_name)
{
        return true;
}



Examples

Code Examples