Abstract class Phalcon\Session\Adapter

Base class for Phalcon\Session adapters

Methods

public __construct ([unknown $options])

Phalcon\Session\Adapter constructor

public boolean start ()

Starts the session (if headers are already sent the session will not be started)

public setOptions (unknown $options)

Sets session’s options

  1. <?php
  2. session->setOptions(array(
  3. 'uniqueId' => 'my-private-app'
  4. ));

public array getOptions ()

Get internal options

public mixed get (unknown $index, [unknown $defaultValue], [unknown $remove])

Gets a session variable from an application context

public set (unknown $index, unknown $value)

Sets a session variable in an application context

  1. <?php
  2. session->set('auth', 'yes');

public has (unknown $index)

Check whether a session variable is set in an application context

  1. <?php
  2. var_dump($session->has('auth'));

public remove (unknown $index)

Removes a session variable from an application context

  1. <?php
  2. $session->remove('auth');

public getId ()

Returns active session id

  1. <?php
  2. echo $session->getId();

public setId (unknown $id)

Set the current session id

  1. <?php
  2. $session->setId($id);

public isStarted ()

Check whether the session has been started

  1. <?php
  2. var_dump($session->isStarted());

public destroy ()

Destroys the active session

  1. <?php
  2. var_dump(session->destroy());

public mixed __get (unknown $index)

Alias: Gets a session variable from an application context

public __set (unknown $index, unknown $value)

Alias: Sets a session variable in an application context

public __isset (unknown $index)

Alias: Check whether a session variable is set in an application context

public __unset (unknown $index)

Alias: Removes a session variable from an application context