@@ -92,7 +92,7 @@ The :class:`Symfony\\Component\\HttpFoundation\\Session\\Storage\\NativeSessionS
92
92
can configure most of the PHP ini configuration directives which are documented
93
93
at `php.net/session.configuration `_.
94
94
95
- To configure these setting , pass the keys (omitting the initial ``session. `` part
95
+ To configure these settings , pass the keys (omitting the initial ``session. `` part
96
96
of the key) as a key-value array to the ``$options `` constructor argument.
97
97
Or set them via the
98
98
:method: `Symfony\\ Component\\ HttpFoundation\\ Session\\ Storage\\ NativeSessionStorage::setOptions `
@@ -133,7 +133,7 @@ example if these were set to ``5/100`` respectively, it would mean a probability
133
133
of 5%. Similarly, ``3/4 `` would mean a 3 in 4 chance of being called, i.e. 75%.
134
134
135
135
If the garbage collection handler is invoked, PHP will pass the value stored in
136
- the PHP ini directive ``session.gc_maxlifetime`. The meaning in this context is
136
+ the PHP ini directive ``session.gc_maxlifetime `` . The meaning in this context is
137
137
that any stored session that was saved more than ``maxlifetime `` ago should be
138
138
deleted. This allows one to expire records based on idle time.
139
139
@@ -163,7 +163,7 @@ calculated by adding the PHP runtime configuration value in
163
163
164
164
.. note ::
165
165
166
- A cookie lifetime of ``0 `` means the cookie expire when the browser is closed.
166
+ A cookie lifetime of ``0 `` means the cookie expires when the browser is closed.
167
167
168
168
Session Idle Time/Keep Alive
169
169
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -254,7 +254,7 @@ will be used to wrap any custom save handlers, that implement :phpclass:`Session
254
254
Under PHP 5.4 and above, all session handlers implement :phpclass: `SessionHandlerInterface `
255
255
including `Native*SessionHandler ` classes which inherit from :phpclass: `SessionHandler `.
256
256
257
- The proxy mechanism allow you to get more deeply involved in session save handler
257
+ The proxy mechanism allows you to get more deeply involved in session save handler
258
258
classes. A proxy for example could be used to encrypt any session transaction
259
259
without knowledge of the specific save handler.
260
260
0 commit comments