本文實例講述了PHP封裝的數據庫保存session功能類。分享給大家供大家參考,具體如下:
PHP用數據庫保存session類:
<?php class SafeSessionHandler implements SessionHandlerInterface { public $save_path; public $session_name; public $table; public function __construct() { $this->table = new Table("safe_session"); } private function session_id_parse($session_id) { $time = hexdec(substr($session_id, 0, 8)); $skey = substr($session_id, 8); return array($time, $skey); } public function close() { loginfo("close: "); return true; } public function create_sid() { loginfo("create_sid: "); $time = time(); $skey = ""; $char = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"; for ($i=0; $i<52; $i++) { $skey .= $char{mt_rand(0, 61)}; } $session = array( "time" => $time, "skey" => $skey, "sval" => "", ); $this->table->insert($session); return dechex($time) . $skey; } public function destroy($session_id) { loginfo("destroy: %s", $session_id); list($time, $skey) = $this->session_id_parse($session_id); $this->table->where("time = ?", $time)->where("skey = ?", $skey)->delete(); return true; } public function gc($maxlifetime) { loginfo("gc: %s", $maxlifetime); $this->table->where("time < ?", time() - 86400 * 30)->delete(); return true; } public function open($save_path, $session_name) { loginfo("open: %s, %s", $save_path, $session_name); $this->save_path = $save_path; $this->session_name = $session_name; return true; } public function read($session_id) { loginfo("read: %s", $session_id); list($time, $skey) = $this->session_id_parse($session_id); $row = $this->table->where("time = ?", $time)->where("skey = ?", $skey)->select()->fetch(); if (empty($row)) { return ""; } return $row["sval"]; } public function write($session_id, $session_data) { loginfo("write: %s, %s", $session_id, $session_data); $session = array("sval" => $session_data,); list($time, $skey) = $this->session_id_parse($session_id); $this->table->where("time = ?", $time)->where("skey = ?", $skey)->update($session); return true; } }
更多關於PHP相關內容感興趣的讀者可查看本站專題:《php字符串(string)用法總結》、《PHP數組(Array)操作技巧大全》、《PHP運算與運算符用法總結》、《PHP網絡編程技巧總結》、《PHP基本語法入門教程》、《php操作office文檔技巧總結(包括word,excel,access,ppt)》、《php日期與時間用法總結》、《php面向對象程序設計入門教程》、《php+mysql數據庫操作入門教程》及《php常見數據庫操作技巧匯總》
希望本文所述對大家PHP程序設計有所幫助。