summaryrefslogtreecommitdiff
path: root/ext/session/tests/session_id_error2.phpt
blob: 1349ba59f2fe747282f971e5592f0e1f692244f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
--TEST--
Test session_id() function : error functionality
--SKIPIF--
<?php include('skipif.inc'); ?>
--FILE--
<?php

ob_start();

/*
 * Prototype : string session_id([string $id])
 * Description : Get and/or set the current session id
 * Source code : ext/session/session.c
 */

echo "*** Testing session_id() : error functionality ***\n";

var_dump(session_id());
var_dump(session_start());
var_dump(session_id("test"));
var_dump(session_id());
var_dump(session_id("1234567890"));
var_dump(session_id());
var_dump(session_destroy());
var_dump(session_id());

echo "Done";
ob_end_flush();
?>
--EXPECTF--
*** Testing session_id() : error functionality ***
string(0) ""
bool(true)
string(%d) "%s"
string(4) "test"
string(4) "test"
string(10) "1234567890"
bool(true)
string(0) ""
Done