Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Redis replaces php file to store an instance of session

2025-01-19 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)06/01 Report--

Redis replaces php file to store an instance of session

Please understand the usage of the PHP session_set_save_handler function before viewing the instance

Define a SessionManager class

Class SessionManager {private $redis; public function _ construct () {$this- > redis = new Redis (); $this- > redis- > connect ('192.168.0.102 percent, 6379) $retval = session_set_save_handler (array ($this, "open"), array ($this, "close"), array ($this, "read"), array ($this, "write"), array ($this, "destroy"), array ($this, "gc"); session_start ();} public function open ($path,$name) {return true;} public function close () {return true } public function read ($id) {$session_value = $this- > redis- > get ($id); if ($session_value) {return $session_value;} else {return ";}} public function write ($id,$data) {if ($this- > redis- > set ($id,$data)) {return true;} else {return false } public function destroy ($id) {if ($this- > redis- > delete ($id)) {return true;} else {return false;}} public function gc ($maxlifetime) {return true;} public function _ destruct () {session_write_close ();}}

Create a session_set.php code as follows

Include ("SessionManager.php"); new SessionManager (); $_ SESSION ['user_name'] = "xxdcsnd@sina.com"

Create a session_set.php code as follows

Include ("SessionManager.php"); new SessionManager (); echo $_ SESSION ['user_name']

Test output xxdcsnd@sina.com

Note: php.ini session.save-hadler is set to user, otherwise session_set_save_handler will not take effect

If you have any questions, please leave a message or go to the community to exchange and discuss, thank you for reading, hope to help you, thank you for your support!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report