php-src/Zend/tests/unset_cv06.phpt

23 lines
429 B
Plaintext
Raw Normal View History

--TEST--
unset() CV 6 (indirect unset() of global variable in session_unset())
--SKIPIF--
2005-06-22 00:41:28 +00:00
<?php include(dirname(__FILE__).'/../../ext/session/tests/skipif.inc'); ?>
2004-10-05 13:21:06 +00:00
--INI--
session.auto_start=0
session.save_handler=files
--FILE--
<?php
session_start();
2010-04-21 01:27:22 +00:00
$_SESSION['x'] = "1\n";
echo $_SESSION['x'];
session_unset();
2010-04-21 01:27:22 +00:00
echo $_SESSION['x'];
echo "ok\n";
?>
--EXPECTF--
1
2008-12-12 12:14:00 +00:00
2010-04-21 01:27:22 +00:00
Notice: Undefined index: x in %sunset_cv06.php on line %d
ok