PHP Classes

File: app/Config/Session.php

Recommend this page to a friend!
  Classes of Steeven Lim   o2system   app/Config/Session.php   Download  
File: app/Config/Session.php
Role: Example script
Content type: text/plain
Description: Example script
Class: o2system
Start projects using the with O2System Framework
Author: By
Last change:
Date: 3 years ago
Size: 1,952 bytes
 

Contents

Class file image Download
<?php
/**
 * This file is part of the O2System PHP Framework package.
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 *
 * @author Steeve Andrian Salim
 * @copyright Copyright (c) Steeve Andrian Salim
 */

// ------------------------------------------------------------------------

/**
 * Http Session Configuration
 *
 * @see https://github.com/o2system/session/wiki
 *
 * @var \O2System\Session\DataStructures\Config
 */
$session = new \O2System\Session\DataStructures\Config([
   
/**
     * Session Handler
     *
     * Supported session handler:
     * - Apc
     * - Apcu
     * - File
     * - Memcached
     * - Memcache
     * - Redis
     *
     * @var string
     */
   
'handler' => 'file',

   
// ------------------------------------------------------------------------

    /**
     * Session Cookie
     *
     * @var array
     */
   
'cookie' => [

       
/**
         * Session Cookie Lifetime
         *
         * The number of SECONDS the cookie to last.
         *
         * @var int
         */
       
'lifetime' => 7200,

       
/**
         * Session Cookie Domain
         *
         * When set to blank or null, will automatically set base on your server hostname.
         *
         * @var string
         */
       
'domain' => null,

       
/**
         * Session Cookie Path
         *
         * Typically will be a forward slash.
         *
         * @var string
         */
       
'path' => '/',

       
/**
         * Session Cookie Secure
         *
         * Cookie will only be set if a secure HTTPS connection exists.
         *
         * @var bool
         */
       
'secure' => false,

       
/**
         * Session Cookie Http Only
         *
         * Cookie will only be accessible via HTTP(S) (no javascript).
         *
         * @var bool
         */
       
'httpOnly' => false,
    ],
]);