|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2000-08-27 14:32 UTC] jon at csh dot rit dot edu
It would be nice (for encapsulation purposes) to allow user-defined session handlers to be implemented as class methods, either through the established array($this, "foo") syntax or via a session_set_object() function. PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 17:00:02 2025 UTC |
this is possible using session_set_save_handler(array('class'=>'method'),...); or do I misunderstand the problem here?