Documentation

Table Of Contents

Previous topic

< Class Phalcon\Session\Adapter

Next topic

Class Phalcon\Session\Bag >

This Page

Class Phalcon\Session\Adapter\Files

extends Phalcon\Session\Adapter

implements Phalcon\Session\AdapterInterface

This adapter store sessions in plain files

<?php

 $session = new Phalcon\Session\Adapter\Files(array(
    'uniqueId' => 'my-private-app'
 ));

 $session->start();

 $session->set('var', 'some-value');

 echo $session->get('var');

Methods

public __construct ([array $options]) inherited from Phalcon\Session\Adapter

Phalcon\Session\Adapter constructor

public boolean start () inherited from Phalcon\Session\Adapter

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

public setOptions (array $options) inherited from Phalcon\Session\Adapter

Sets session’s options

<?php

$session->setOptions(array(
    'uniqueId' => 'my-private-app'
));

public array getOptions () inherited from Phalcon\Session\Adapter

Get internal options

public mixed get (string $index, [mixed $defaultValue]) inherited from Phalcon\Session\Adapter

Gets a session variable from an application context

public set (string $index, string $value) inherited from Phalcon\Session\Adapter

Sets a session variable in an application context

<?php

$session->set('auth', 'yes');

public boolean has (string $index) inherited from Phalcon\Session\Adapter

Check whether a session variable is set in an application context

<?php

var_dump($session->has('auth'));

public remove (string $index) inherited from Phalcon\Session\Adapter

Removes a session variable from an application context

<?php

$session->remove('auth');

public string getId () inherited from Phalcon\Session\Adapter

Returns active session id

<?php

echo $session->getId();

public boolean isStarted () inherited from Phalcon\Session\Adapter

Check whether the session has been started

<?php

var_dump($session->isStarted());

public boolean destroy () inherited from Phalcon\Session\Adapter

Destroys the active session

<?php

var_dump($session->destroy());