定义和用法
会话或会话处理是一种使数据跨 Web 应用程序的各个页面可用的方法。这session_module_name()用于设置或检索当前会话的保存处理程序/模块。
用法
session_module_name([$module] );
参数
Sr.No | 参数及说明 |
---|---|
1 |
path(Optional) 这是一个字符串值,表示要存储会话数据的路径。 |
返回值
此函数返回一个字符串值,表示当前会话模块的名称。
PHP版本
这个函数最初是在 PHP 版本 4 中引入的,并且适用于所有后续版本。
例子1
下面的例子演示了session_module_name()函数。
<html>
<head>
<title>Setting up a PHP session</title>
</head>
<body>
<?php
//Retrieving the module name
$res = session_module_name();
//Starting the session
session_start();
print("Module Name:".$res);
?>
</body>
</html>
执行上面的 html 文件,它将显示以下消息 âˆ'
Module Name:files
例子2
您可以使用此函数设置当前会话的模块名称,如下所示
<html>
<head>
<title>Setting up a PHP session</title>
</head>
<body>
<?php
//Setting the module name
session_module_name("files");
$res = session_module_name();
//Starting the session
session_start();
print("Module Name:".$res);
?>
</body>
</html>
这将产生以下输出 -
Module Name:files
相关用法
- PHP session_gc()用法及代码示例
- PHP session_regenerate_id()用法及代码示例
- PHP session_destroy()用法及代码示例
- PHP session_reset()用法及代码示例
- PHP session_unset() vs session_destroy()用法及代码示例
- PHP session_register_shutdown()用法及代码示例
- PHP session_id()用法及代码示例
- PHP session_commit()用法及代码示例
- PHP session_start()用法及代码示例
- PHP session_status()用法及代码示例
- PHP session_name()用法及代码示例
- PHP session_set_save_handler()用法及代码示例
- PHP session_save_path()用法及代码示例
- PHP session_set_cookie_params()用法及代码示例
- PHP session_abort()用法及代码示例
- PHP session_decode()用法及代码示例
- PHP session_write_close()用法及代码示例
- PHP session_unset()用法及代码示例
- PHP session_encode()用法及代码示例
- PHP session_get_cookie_params()用法及代码示例
注:本文由纯净天空筛选整理自 PHP - session_module_name() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。