定义和用法
会话或会话处理是一种使数据跨 Web 应用程序的各个页面可用的方法。这session_id()函数用于设置或检索当前的自定义 id。
用法
session_id([$id]);
参数
Sr.No | 参数及说明 |
---|---|
1 |
name(Optional) 如果您想使用此方法设置会话的 id,这是一个表示会话 id 的字符串值。 |
返回值
这将返回一个字符串,表示当前会话的 id(如果有),或者如果当前会话没有任何 id,则返回一个空字符串。
PHP版本
这个函数最初是在 PHP 版本 4 中引入的,并且适用于所有后续版本。
例子1
下面的例子演示了session_id()函数。
<html>
<head>
<title>Setting up a PHP session</title>
</head>
<body>
<?php
//Starting the session
session_start();
$id = session_id();
print("Session Id:".$id);
?>
</body>
</html>
执行上述 html 文件将显示以下消息 -
Session Id:b9t3gprjtl35ms4sm937hj7s30
例子2
下面是这个函数的另一个例子,在这里我们有来自同一个会话中同一个应用程序的两个页面。
session_page1.htm
<?php
if(isset($_POST['SubmitButton'])){
//Starting the session
$id = session_create_id();
session_id($id);
print("\n"."Id:".$id);
session_start();
$_SESSION['name'] = $_POST['name'];
$_SESSION['age'] = $_POST['age'];
session_commit();
}
?>
<html>
<body>
<form action="#" method="post">
<label for="fname">Enter the values click Submit and click on Next</label>
<br><br><label for="fname">Name:</label>
<input type="text" id="name" name="name"><br><br>
<label for="lname">Age:</label>
<input type="text" id="age" name="age"><br><br>
<input type="submit" name="SubmitButton"/>
<?php
echo '<br><br /><a href="session_page2.htm">Next</a>';
?>
</form>
</body>
</html>
这将产生以下输出 -
按下提交后,页面将如下所示 -
点击时Next执行以下文件。
session_page2.htm
<html> <head> <title>Second Page</title> </head> <body> <?php //Session started session_start(); print("Values from the session with id:".session_id()); echo "<br>"; print($_SESSION['name']); echo "<br>"; print($_SESSION['age']); ?> </body> </html>
这将产生以下输出 -
Values from the session with id:brb9t3gprjtl35ms4sm937hj7s30 Krishna 30
例子3
您可以使用此函数创建自定义会话 ID,如下所示 -
<html>
<head>
<title>Setting up a PHP session</title>
</head>
<body>
<?php
//Creating a custom session id
session_id("my-id");
//Starting the session
session_start();
print("Id:".session_id());
?>
</body>
</html>
执行上述 html 文件将显示以下消息 -
Id:my-id
相关用法
- 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_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_cache_limiter()用法及代码示例
注:本文由纯净天空筛选整理自 PHP - session_id() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。