document json session serialization (#5787)
This commit is contained in:
parent
54a249cd3c
commit
d43dcb1c54
|
|
@ -48,6 +48,21 @@
|
||||||
|
|
||||||
'encrypt' => false,
|
'encrypt' => false,
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Session Serialization
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| The session serialization strategy determines how the array of session
|
||||||
|
| data will get serialized into a string for storage. Typically, JSON
|
||||||
|
| serialization will be fine unless PHP objects are in the session.
|
||||||
|
|
|
||||||
|
| Supported: "json", "php"
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'serialization' => 'json',
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
| Session File Location
|
| Session File Location
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue