©
Dokumen ini menggunakan Manual laman web PHP Cina Lepaskan
(PHP 4, PHP 5)
session_module_name — 获取/设置会话模块名称
$module
] )session_module_name() 获取或设置会话模块名称。
module
如果指定 module
参数,则使用
指定值作为会话模块。
返回当前所用的会话模块名称。
[#1] Anonymous [2015-04-21 10:43:09]
was looking for a rather comprehensive list of modules, and found http://stackoverflow.com/questions/8415962/what-exactly-phps-function-session-module-name-is-for but there are more.
[#2] raees at steelbrain dot com dot pk [2014-11-03 21:29:44]
This function is used to set the Session Module at site or script level.
The global configuration can be done in php.ini under the [Session] section and with the name of "session.save_handler". The sessions are saved in files by default, like so:
session.save_handler = files
But with this configuration you set one of your websites to use some other session module (if you have them installed and extension loaded with PHP), like so:
<?php
// NOTE: You must use this function before starting session with session_start(); to make it work properly
session_module_name('memcache'); // or pgsql or redis etc
// You'll need to define a save path also, if the module is other than files, like so:
session_save_path('localhost:11211'); // memcache uses port 11211
// or you can use multiple for load balancing:
session_save_path('localhost:11211:41,otherhost:11211:60') // First part is hostname or path to socket, next is port and the last is the weight for that server
//The function also returns the value of the current session module.
echo session_module_name(); // will print memcache in our case
// or maybe a check
if(session_module_name() != 'memcache'){
// Do something, throw an exception maybe
}
[#3] ts9904247885 at gmail dot com [2014-06-16 10:20:10]
<?php
session_start();
$_SESSION['name']="Tushar";
$n=$_SESSION['name'];
$_SESSION['Age']="23";
$_SESSION['city']="Tarapur";
//echo session_encode()."<br/>";//Prints all Session Data
//echo session_is_registered($n);
echo session_module_name();//it prints "files"
?>
output:
files