PHP 中使用平面文件或 MySQL 的任何分离/独立会话库?
PHP 中使用平面文件或 MySQL 的任何分离/独立会话库?
Any detached/independent Session Library in PHP using Flat File or MySQL?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
除了使用
Zend_Session
或任何 这些 PEAR 包 编写您自己的会话处理也非常容易。您所要做的就是实现所需的方法。请参阅 PHP 手册中 session_set_save_handler 的示例。从 PHP5.3 开始,您可以使用 lambda 实现回调,这样您就不必用函数弄乱全局命名空间。
In addition to using
Zend_Session
or any of these PEAR packages it is also pretty easy to write your own Session Handling. All you have to do is implement the required methods. See the example for session_set_save_handler in the PHP Manual.As of PHP5.3 you could implement the callbacks with lambdas, so you don't have to clutter the global namespace with functions.
Zend_Session
可能会做到这一点。和Zend_Session_SaveHandler_DbTable
那里我相信也是平面文件的保存处理程序。Zend_Session
would probably do it. andZend_Session_SaveHandler_DbTable
there is also a save handler for flat file I believe.