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


PHP session_set_cookie_params()用法及代码示例



定义和用法

会话或会话处理是一种使数据跨 Web 应用程序的各个页面可用的方法。这session_set_cookie_params()用于设置会话cookie中定义的参数php.ini文件

用法

session_set_cookie_params([$array]);

参数

Sr.No 参数及说明
1

array(Optional)

这是一个关联数组,其中包含 cookie 参数的值(生命周期、路径、域、安全、httponly 和 samesite)。

返回值

此函数返回一个布尔值,成功时为 TRUE,失败时为 FALSE。

PHP版本

这个函数最初是在 PHP 版本 4 中引入的,并且适用于所有后续版本。

例子1

下面的例子演示了session_set_cookie_params()函数。

<html>   
   <head>
      <title>Setting up a PHP session</title>
   </head>   
   <body>
      <?php  	
         //Setting the cookie parameters
         session_set_cookie_params(30 * 60, "/", "test", );
         //Retrieving the cookie parameters
         $res = session_get_cookie_params();
         //Starting the session
         session_start();
         print_r($res);	  
      ?>
   </body>   
</html>

执行上面的 html 文件,它将显示以下消息 âˆ'

Array ( [lifetime] => 1800 [path] => /test [domain] => test.com [secure] => [httponly] => [samesite] => )

例子2

这是此函数的另一个示例。

<html>   
   <head>
      <title>Setting up a PHP session</title>
   </head>   
   <body>
      <?php  
         //Retrieving the cookie parameters
         $currentCookieParams = session_get_cookie_params();
         
         //Setting the cookie parameters
         $domain = '.test.com';
         session_set_cookie_params(
            $currentCookieParams["lifetime"],
            $currentCookieParams["path"],
            $domain,
            $currentCookieParams["secure"],
            $currentCookieParams["httponly"]
         );
         //Starting the session
         session_start();
      ?>
   </body>   
</html>

相关用法


注:本文由纯净天空筛选整理自 PHP - session_set_cookie_params() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。