定义和用法
会话或会话处理是一种使数据跨 Web 应用程序的各个页面可用的方法。这session_save_path()用于设置或检索当前会话数据的保存路径。
用法
session_save_path([$path ] );
参数
Sr.No | 参数及说明 |
---|---|
1 |
path (Optional) 这是一个字符串值,表示要存储会话数据的路径。 |
返回值
此函数返回一个字符串值,表示存储当前会话数据的目录的路径。
PHP版本
这个函数最初是在 PHP 版本 4 中引入的,并且适用于所有后续版本。
例子1
下面的例子演示了session_save_path()函数。
<html>
<head>
<title>Setting up a PHP session</title>
</head>
<body>
<?php
ini_set('session.save_path', '/data');
//Retrieving the session save path
$res = session_save_path();
//Starting the session
session_start();
print("path:".$res);
?>
</body>
</html>
执行上述 html 文件将显示以下消息。
path:/data
例子2
您还可以使用此函数设置会话保存路径,如下所示
<html>
<head>
<title>Setting up a PHP session</title>
</head>
<body>
<?php
//Setting the session path
session_save_path('/data');
//Retrieving the session save path
$res = session_save_path();
//Starting the session
session_start();
print("path:".$res);
?>
</body>
</html>
这将产生以下输出 -
path:/data
相关用法
- PHP session_start()用法及代码示例
- PHP session_status()用法及代码示例
- PHP session_set_save_handler()用法及代码示例
- PHP session_set_cookie_params()用法及代码示例
- 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_name()用法及代码示例
- 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_save_path() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。