PHP Classes

File: src/Session/README.md

Recommend this page to a friend!
  Classes of Slawomir Kaleta   Dframe Framework   src/Session/README.md   Download  
File: src/Session/README.md
Role: Documentation
Content type: text/markdown
Description: Documentation
Class: Dframe Framework
Modular MVC based PHP Web framework
Author: By
Last change: Update of src/Session/README.md
Date: 3 years ago
Size: 1,583 bytes
 

Contents

Class file image Download

Dframe/Sesssion - Component

Build Status Latest Stable Version Total Downloads Latest Unstable Version License

php framework dframe logo

Documentation - Session PHP

Composer

$ composer require dframe/session

Standalone

$this->session = new \Dframe\Session\Session('name');
$session = new \Dframe\Session\Session('HashSaltRandomForSession');
$session->register();                        // Set session_id and session_time - default 60
$session->authLogin();                        // Return true/false if session is registered
$session->set($key, $value);                   // set $_SESSION[$key] = $value;
$session->get($key, $or = null);                // get $_SESSION[$key];
$session->remove($key);                       // unset($_SESSION[$key]);
$session->end();                            // session_destroy

License

Open-sourced software licensed under the MIT license