summaryrefslogtreecommitdiff
path: root/Zend/tests/unset_cv06.phpt
blob: dd788158e416d03cefb0e7e9dcf1c7a63c156b25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
--TEST--
unset() CV 6 (indirect unset() of global variable in session_unset())
--SKIPIF--
<?php include(dirname(__FILE__).'/../../ext/session/tests/skipif.inc'); ?>
--INI--
session.auto_start=0
session.save_handler=files
--FILE--
<?php
session_start();
$_SESSION['x'] = "1\n";
echo $_SESSION['x'];

session_unset();
echo $_SESSION['x'];
echo "ok\n";
?>
--EXPECTF--
1

Notice: Undefined index: x in %sunset_cv06.php on line %d
ok