@@ -26,7 +26,7 @@ So-called 'native' handlers, are save handlers which are either compiled into
2626PHP or provided by PHP extensions, such as PHP-Sqlite, PHP-Memcached and so on.
2727
2828All native save handlers are internal to PHP and as such, have no public facing API.
29- They must be configured by PHP ini directives, usually ``session.save_path `` and
29+ They must be configured by php. ini directives, usually ``session.save_path `` and
3030potentially other driver specific directives. Specific details can be found in
3131docblock of the ``setOptions() `` method of each class.
3232
@@ -87,7 +87,7 @@ Configuring PHP Sessions
8787~~~~~~~~~~~~~~~~~~~~~~~~
8888
8989The :class: `Symfony\\ Component\\ HttpFoundation\\ Session\\ Storage\\ NativeSessionStorage `
90- can configure most of the PHP ini configuration directives which are documented
90+ can configure most of the php. ini configuration directives which are documented
9191at `php.net/session.configuration `_.
9292
9393To configure these settings, pass the keys (omitting the initial ``session. `` part
@@ -131,7 +131,7 @@ example if these were set to ``5/100`` respectively, it would mean a probability
131131of 5%. Similarly, ``3/4 `` would mean a 3 in 4 chance of being called, i.e. 75%.
132132
133133If the garbage collection handler is invoked, PHP will pass the value stored in
134- the PHP ini directive ``session.gc_maxlifetime ``. The meaning in this context is
134+ the php. ini directive ``session.gc_maxlifetime ``. The meaning in this context is
135135that any stored session that was saved more than ``maxlifetime `` ago should be
136136deleted. This allows one to expire records based on idle time.
137137
0 commit comments