PHP 中使用平面文件或 MySQL 的任何分离/独立会话库?

发布于 2024-08-20 08:19:07 字数 38 浏览 3 评论 0原文

PHP 中使用平面文件或 MySQL 的任何分离/独立会话库?

Any detached/independent Session Library in PHP using Flat File or MySQL?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

你穿错了嫁妆 2024-08-27 08:19:07

除了使用 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.

云淡月浅 2024-08-27 08:19:07

Zend_Session 可能会做到这一点。和 Zend_Session_SaveHandler_DbTable 那里我相信也是平面文件的保存处理程序。

Zend_Session would probably do it. and Zend_Session_SaveHandler_DbTable there is also a save handler for flat file I believe.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文