当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP session_module_name()用法及代码示例



定义和用法

会话或会话处理是一种使数据跨 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_module_name() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。