-1

フラットファイルまたは MySQL を使用する PHP の切り離された/独立したセッションライブラリはありますか?

4

2 に答える 2

1

Zend_Sessionおそらくそれをするでしょう。Zend_Session_SaveHandler_DbTableフラットファイルの保存ハンドラもあると思います。

于 2010-02-07T02:27:50.160 に答える
1

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.

于 2010-02-07T13:46:19.727 に答える