定义和用法
会话或会话处理是一种使数据跨 Web 应用程序的各个页面可用的方法。这session_decode()函数接受一个编码的序列化会话字符串并将其解码并将其存储在 $_SESSION 变量中。
用法
session_decode($data);
参数
该函数不接受任何参数。
返回值
此函数返回一个布尔值,成功时为 TRUE,失败时为 False。
PHP版本
这个函数最初是在 PHP 版本 4 中引入的,并且适用于所有后续版本。
例子1
下面的例子演示了session_decode()函数。
<html>
<head>
<title>Setting up a PHP session</title>
</head>
<body>
<?php
//Starting the session
session_start();
$_SESSION['data'] = "This is sample data";
$res = session_encode();
print("Encoded Data:".$res);
echo "<br>";
//Decoding the session
session_decode($res);
print_r($_SESSION);
?>
</body>
</html>
执行上述 html 文件将显示以下消息 -
Encoded Data:data|s:19:"This is sample data"; Array ( [data] => This is sample data )
例子2
以下是此函数的另一个示例,在这里我们有来自同一会话中同一应用程序的两个页面 -
session_page1.htm
<html>
<body>
<form action="#" method="post">
<br>
<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>';
if(isset($_POST['SubmitButton'])){
//Starting the session
session_start();
$_SESSION['name'] = $_POST['name'];
$_SESSION['age'] = $_POST['age'];
$res = session_encode();
echo "<br><br>Encoded Data:". $res;
session_decode($res);
print_r($_SESSION);
}
?>
</form>
</body>
</html>
这将产生以下输出 -
点击提交按钮后,上面的页面看起来像 -
点击时Next执行以下文件。
session_page2.htm
<html> <head> <title>Second Page</title> </head> <body> <?php //Session started session_start(); $_SESSION['City'] = 'Hyderabad'; $_SESSION['Phone'] = '9848022338'; $res = session_encode(); echo "Encoded Data:". $res; session_decode($res); print_r($_SESSION); ?> </body> </html>
这将产生以下输出 -
Encoded Data:name|s:7:"krishna";age|s:2:"30";City|s:9:"Hyderabad";Phone|s:10:"9848022338";Array ( [name] => krishna [age] => 30 [City] => Hyderabad [Phone] => 9848022338 )
相关用法
- PHP session_destroy()用法及代码示例
- PHP session_gc()用法及代码示例
- PHP session_regenerate_id()用法及代码示例
- 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_write_close()用法及代码示例
- PHP session_unset()用法及代码示例
- PHP session_encode()用法及代码示例
- PHP session_get_cookie_params()用法及代码示例
- PHP session_cache_limiter()用法及代码示例
注:本文由纯净天空筛选整理自 PHP - session_decode() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。