21 lines
553 B
PHP
21 lines
553 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
return array(
|
||
|
|
|
||
|
|
/*
|
||
|
|
|--------------------------------------------------------------------------
|
||
|
|
| Default Session Driver
|
||
|
|
|--------------------------------------------------------------------------
|
||
|
|
|
|
||
|
|
| This option controls the default session "driver" that will be used on
|
||
|
|
| requets. By default, we will use the light-weight cookie driver but
|
||
|
|
| you may specify any of the other wonderful drivers provided here.
|
||
|
|
|
|
||
|
|
| Supported: "cookie", file", "database", "apc",
|
||
|
|
| "memcached", "redis", "array"
|
||
|
|
|
|
||
|
|
*/
|
||
|
|
|
||
|
|
'driver' => 'array',
|
||
|
|
|
||
|
|
);
|