PHP Classes

File: app/config/cookies.php

Recommend this page to a friend!
  Classes of ikhsan   Slim Starter   app/config/cookies.php   Download  
File: app/config/cookies.php
Role: Configuration script
Content type: text/plain
Description: cookie configuration
Class: Slim Starter
Build MVC Web applications based on Slim framework
Author: By
Last change: Update of app/config/cookies.php
Date: 5 months ago
Size: 349 bytes
 

Contents

Class file image Download
<?php

$config
['cookies'] = array(
   
'expires' => '20 minutes',
   
'path' => '/',
   
'domain' => null,
   
'secure' => false,
   
'httponly' => false,
   
'name' => 'slim_session',
   
'secret' => 'CHANGE_ME',
   
'cipher' => MCRYPT_RIJNDAEL_256,
   
'cipher_mode' => MCRYPT_MODE_CBC
);