1--TEST--
2Test session_set_save_handler() function: create_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: create_sid ***\n";
14
15class MySession2 {
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 @file_get_contents($this->path . $id);
32	}
33
34	public function write($id, $data) {
35		return file_put_contents($this->path . $id, $data);
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 'my_sid';
53	}
54}
55
56$handler = new MySession2;
57session_set_save_handler(array($handler, 'open'), array($handler, 'close'),
58	array($handler, 'read'), array($handler, 'write'), array($handler, 'destroy'), array($handler, 'gc'), array($handler, 'create_sid'));
59session_start();
60
61$_SESSION['foo'] = "hello";
62
63var_dump(session_id(), ini_get('session.save_handler'), $_SESSION);
64
65session_write_close();
66session_unset();
67
68session_start();
69var_dump($_SESSION);
70
71session_write_close();
72session_unset();
73
74--EXPECTF--
75*** Testing session_set_save_handler() function: create_sid ***
76string(%d) "my_sid"
77string(4) "user"
78array(1) {
79  ["foo"]=>
80  string(5) "hello"
81}
82array(1) {
83  ["foo"]=>
84  string(5) "hello"
85}
86