When the script runs without modifying the php.ini, it sets the information about the session.
Set how session is saved
Ini_set ("Session.save_handler", "memcache");
The default way to save the session is to save the text, here we modify the way to memcache.
Set the save path for session
Ini_set ("Session.save_path", "tcp://127.0.0.1:11211");
IP address fill in your own server address
The setup is complete.
a.php
<?phpini_set ("Session.save_handler", "memcache"); Ini_set ("Session.save_path", "tcp://127.0.0.1:11211"); $mem = Memcache_connect (' 127.0.0.1 ', 11211); Session_Start (); $_session[' username ']= "XTCEETG";
b.php
Ini_set ("Session.save_handler", "memcache"); Ini_set ("Session.save_path", "tcp://61.147.80.154:11211"); session_ Start (); Var_dump ($_session);
Results
Array (size=1) ' username ' = = String ' Xtceetg ' (length=7)
Accessing the session with Memcache