xref: /PHP-5.3/ext/session/tests/030.phpt (revision 57e0d2ac)
1--TEST--
2redefining SID should not cause warnings
3--SKIPIF--
4<?php include('skipif.inc'); ?>
5--INI--
6session.use_cookies=0
7session.cache_limiter=
8session.serialize_handler=php
9session.save_handler=files
10--FILE--
11<?php
12error_reporting(E_ALL);
13
14session_id("abtest");
15session_start();
16session_destroy();
17session_id("abtest2");
18session_start();
19session_destroy();
20
21print "I live\n";
22?>
23--EXPECT--
24I live
25