定義和用法
會話或會話處理是一種使數據跨 Web 應用程序的各個頁麵可用的方法。這session_set_save_handler()函數用於設置 user-level 會話存儲函數,您可以使用它來存儲和檢索與當前會話關聯的數據。
用法
session_cache_expire($sessionhandler [,$register_shutdown]);
參數
Sr.No | 參數及說明 |
---|---|
1 |
sessionhandler (Mandatory) 這是實現接口 SessionHandlerInterface 和 SessionIdInterface 的類的對象。 |
2 |
register_shutdown (Optional) 如果為此參數傳遞值,則 session_write_close() 將注冊為 register_shutdown_function() 函數。 |
返回值
此函數返回一個布爾值,成功時為 TRUE,失敗時為 FALSE。
PHP版本
這個函數最初是在 PHP 版本 4 中引入的,並且適用於所有後續版本。
例子1
下麵的例子演示了session_set_save_handler()函數。
<html>
<head>
<title>Setting up a PHP session</title>
</head>
<body>
<?php
function open($save_path, $session_name){
global $session_path;
$session_path = $save_path;
return(true);
}
function close() {
return(true);
}
function read($id){
global $session_path;
$sess_file = "$session_path/sess_$id";
return (string) @file_get_contents($sess_file);
}
function write($id, $sess_data){
global $session_path;
$sess_file = "$session_path/sess_$id";
if ($fp = @fopen($sess_file, "w")) {
$return = fwrite($fp, $sess_data);
fclose($fp);
return $return;
} else {
return(false);
}
}
function destroy($id){
global $session_path;
$sess_file = "$session_path/sess_$id";
return(@unlink($sess_file));
}
function gc($maxlifetime){
global $session_path;
foreach (glob("$session_path/sess_*") as $filename) {
if (filemtime($filename) + $maxlifetime < time()) {
@unlink($filename);
}
}
return true;
}
$res = session_set_save_handler("open", "close", "read", "write", "destroy", "gc");
if($res){
print("Successful");
}else{
print("A problem occurred");
}
session_start();
?>
</body>
</html>
執行上述 html 文件將顯示以下消息。
Successful
相關用法
- PHP session_set_cookie_params()用法及代碼示例
- 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_save_handler() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。