@@ -252,12 +252,17 @@ using the `Native*SessionHandler` classes, while
252
252
:class: `Symfony\\ Component\\ HttpFoundation\\ Session\\ Storage\\ Handler\\ SessionHandlerProxy `
253
253
will be used to wrap any custom save handlers, that implement:phpclass: `SessionHandlerInterface `.
254
254
255
- Under PHP 5.4 and above, all session handlers implement:phpclass: `SessionHandlerInterface `
255
+ From PHP 5.4 and above, all session handlers implement:phpclass: `SessionHandlerInterface `
256
256
including `Native*SessionHandler ` classes which inherit from:phpclass: `SessionHandler `.
257
257
258
258
The proxy mechanism allows you to get more deeply involved in session save handler
259
259
classes. A proxy for example could be used to encrypt any session transaction
260
260
without knowledge of the specific save handler.
261
261
262
+ ..note ::
263
+
264
+ Before PHP 5.4, you can only proxy user-land save handlers but not
265
+ native PHP save handlers.
266
+
262
267
.. _`php.net/session.customhandler` :http://php.net/session.customhandler
263
268
.. _`php.net/session.configuration` :http://php.net/session.configuration