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 (string)@file_get_contents($this->path . $id);
32    }
33
34    public function write($id, $data) {
35        // Empty $data = 0 = false
36        return (bool)file_put_contents($this->path . $id, $data);
37    }
38
39    public function destroy($id) {
40        @unlink($this->path . $id);
41    }
42
43    public function gc($maxlifetime) {
44        foreach (glob($this->path . '*') as $filename) {
45            if (filemtime($filename) + $maxlifetime < time()) {
46                @unlink($filename);
47            }
48        }
49        return true;
50    }
51
52    public function create_sid() {
53        return pathinfo(__FILE__)['filename'];
54    }
55}
56
57$handler = new MySession2;
58session_set_save_handler(array($handler, 'open'), array($handler, 'close'),
59    array($handler, 'read'), array($handler, 'write'), array($handler, 'destroy'), array($handler, 'gc'), array($handler, 'create_sid'));
60session_start();
61
62$_SESSION['foo'] = "hello";
63
64var_dump(session_id(), ini_get('session.save_handler'), $_SESSION);
65
66session_write_close();
67session_unset();
68
69session_start();
70var_dump($_SESSION);
71--CLEAN--
72<?php
73@unlink(session_save_path().'/u_sess_PHPSESSIDsession_set_save_handler_sid_001');
74?>
75--EXPECT--
76*** Testing session_set_save_handler() function: create_sid ***
77string(32) "session_set_save_handler_sid_001"
78string(4) "user"
79array(1) {
80  ["foo"]=>
81  string(5) "hello"
82}
83array(1) {
84  ["foo"]=>
85  string(5) "hello"
86}
87