當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP session_get_cookie_params()用法及代碼示例



定義和用法

會話或會話處理是一種使數據跨 Web 應用程序的各個頁麵可用的方法。這session_get_cookie_params()用於檢索會話 cookie 參數。

用法

session_get_cookie_params([$array]);

參數

此方法不接受任何參數。

返回值

此函數返回一個包含當前會話 cookie 參數值的數組。

PHP版本

這個函數最初是在 PHP 版本 4 中引入的,並且適用於所有後續版本。

例子1

下麵的例子演示了session_get_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_get_cookie_params(
            $currentCookieParams["lifetime"],
            $currentCookieParams["path"],
            $domain,
            $currentCookieParams["secure"],
            $currentCookieParams["httponly"]
         );
         //Starting the session
         session_start();
      ?>
   </body>   
</html>

相關用法


注:本文由純淨天空篩選整理自 PHP - session_get_cookie_params() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。