1--TEST-- 2Test session_set_save_handler() function: class with validate_sid 3--INI-- 4session.save_handler=files 5session.name=PHPSESSID 6--SKIPIF-- 7<?php include('skipif.inc'); ?> 8--FILE-- 9<?php 10 11ob_start(); 12 13echo "*** Testing session_set_save_handler() function: class with validate_sid ***\n"; 14 15class MySession2 extends SessionHandler { 16 public $path; 17 18 public function open($path, $name) { 19 if (!$path) { 20 $path = sys_get_temp_dir(); 21 } 22 $this->path = $path . '/u_sess_' . $name; 23 return true; 24 } 25 26 public function close() { 27 return true; 28 } 29 30 public function read($id) { 31 return (string)@file_get_contents($this->path . $id); 32 } 33 34 public function write($id, $data) { 35 return file_put_contents($this->path . $id, $data)===FALSE ? FALSE : TRUE ; 36 } 37 38 public function destroy($id) { 39 @unlink($this->path . $id); 40 } 41 42 public function gc($maxlifetime) { 43 foreach (glob($this->path . '*') as $filename) { 44 if (filemtime($filename) + $maxlifetime < time()) { 45 @unlink($filename); 46 } 47 } 48 return true; 49 } 50 51 public function create_sid() { 52 return pathinfo(__FILE__)['filename']; 53 } 54 55 public function validate_sid($id) { 56 return pathinfo(__FILE__)['filename']===$id; 57 } 58} 59 60$handler = new MySession2; 61session_set_save_handler($handler); 62session_start(); 63 64$_SESSION['foo'] = "hello"; 65 66var_dump(session_id(), ini_get('session.save_handler'), $_SESSION); 67 68session_write_close(); 69session_unset(); 70 71session_start(); 72var_dump($_SESSION); 73--CLEAN-- 74<?php 75@unlink(session_save_path().'/u_sess_PHPSESSIDsession_set_save_handler_class_018'); 76?> 77--EXPECT-- 78*** Testing session_set_save_handler() function: class with validate_sid *** 79string(34) "session_set_save_handler_class_018" 80string(4) "user" 81array(1) { 82 ["foo"]=> 83 string(5) "hello" 84} 85array(1) { 86 ["foo"]=> 87 string(5) "hello" 88} 89