1
0
mirror of https://github.com/php/php-src.git synced 2026-04-29 03:03:26 +02:00
Files
archived-php-src/Zend/tests/unset_cv06.phpt
T
Kalle Sommer Nielsen febee11285 Removed register_globals
2010-04-21 01:27:22 +00:00

23 lines
429 B
PHP

--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