定義和用法
會話或會話處理是一種使數據跨 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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。