Class **Phalcon\\Session\\Adapter\\Files** ========================================== *extends* abstract class :doc:`Phalcon\\Session\\Adapter ` *implements* :doc:`Phalcon\\Session\\AdapterInterface ` Methods ------- public **__construct** ([*unknown* $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** (*unknown* $options) inherited from Phalcon\\Session\\Adapter Sets session's options .. code-block:: php setOptions(array( 'uniqueId' => 'my-private-app' )); public *array* **getOptions** () inherited from Phalcon\\Session\\Adapter Get internal options public *mixed* **get** (*unknown* $index, [*unknown* $defaultValue], [*unknown* $remove]) inherited from Phalcon\\Session\\Adapter Gets a session variable from an application context public **set** (*unknown* $index, *unknown* $value) inherited from Phalcon\\Session\\Adapter Sets a session variable in an application context .. code-block:: php set('auth', 'yes'); public **has** (*unknown* $index) inherited from Phalcon\\Session\\Adapter Check whether a session variable is set in an application context .. code-block:: php has('auth')); public **remove** (*unknown* $index) inherited from Phalcon\\Session\\Adapter Removes a session variable from an application context .. code-block:: php remove('auth'); public **getId** () inherited from Phalcon\\Session\\Adapter Returns active session id .. code-block:: php getId(); public **setId** (*unknown* $id) inherited from Phalcon\\Session\\Adapter Set the current session id .. code-block:: php setId($id); public **isStarted** () inherited from Phalcon\\Session\\Adapter Check whether the session has been started .. code-block:: php isStarted()); public **destroy** () inherited from Phalcon\\Session\\Adapter Destroys the active session .. code-block:: php destroy()); public *mixed* **__get** (*unknown* $index) inherited from Phalcon\\Session\\Adapter Alias: Gets a session variable from an application context public **__set** (*unknown* $index, *unknown* $value) inherited from Phalcon\\Session\\Adapter Alias: Sets a session variable in an application context public **__isset** (*unknown* $index) inherited from Phalcon\\Session\\Adapter Alias: Check whether a session variable is set in an application context public **__unset** (*unknown* $index) inherited from Phalcon\\Session\\Adapter Alias: Removes a session variable from an application context