summaryrefslogtreecommitdiff
path: root/ext/session/tests/session_id_error4.phpt
blob: c07912d7eac244eed0a1a9126bac41b17b537788 (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
--TEST--
Test session_id() function : error functionality
--SKIPIF--
<?php include('skipif.inc'); ?>
--INI--
session.hash_function=0
--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(ini_set("session.hash_function", -1));
var_dump(session_id());
var_dump(session_start());
var_dump(session_id());
var_dump(session_destroy());

echo "Done";
ob_end_flush();
?>
--EXPECTF--
*** Testing session_id() : error functionality ***
string(1) "0"
string(0) ""

Fatal error: session_start(): Invalid session hash function in %s on line %d