定義和用法
會話或會話處理是一種使數據跨 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_save_handler()用法及代碼示例
- PHP session_start()用法及代碼示例
- PHP session_status()用法及代碼示例
- PHP session_save_path()用法及代碼示例
- 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_set_cookie_params() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。