summaryrefslogtreecommitdiff
path: root/ext/session/tests/sessionhandler_open_001.phpt
blob: 6ade9e00a598e973f630d83288cb7fd155511cda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
--TEST--
Testing repated SessionHandler::open() calls
--SKIPIF--
<?php include('skipif.inc'); ?>
--FILE--
<?php  

ini_set('session.save_handler', 'files');
$x = new SessionHandler;
$x->open('','');
$x->open('','');
$x->open('','');
$x->open('','');

print "Done!\n";

?>
--EXPECTF--
Done!