mirror of
https://github.com/php/php-src.git
synced 2024-11-25 10:54:15 +08:00
8deefa8780
# Trunk patch will follow shortly
30 lines
788 B
PHP
30 lines
788 B
PHP
--TEST--
|
|
unset() CV 5 (indirect unset() of global variable in session_start())
|
|
--INI--
|
|
register_long_arrays=1
|
|
session.auto_start=0
|
|
session.save_handler=files
|
|
--SKIPIF--
|
|
<?php
|
|
|
|
include(dirname(__FILE__).'/../../ext/session/tests/skipif.inc');
|
|
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
$HTTP_SESSION_VARS = "ok\n";
|
|
echo $HTTP_SESSION_VARS;
|
|
session_start();
|
|
echo $HTTP_SESSION_VARS;
|
|
echo "\nok\n";
|
|
?>
|
|
--EXPECTF--
|
|
Deprecated: Directive 'register_long_arrays' is deprecated in PHP %d.%d and greater in Unknown on line 0
|
|
ok
|
|
|
|
Warning: session_start(): Cannot send session cookie - headers already sent by (output started at %sunset_cv05.php on line %d
|
|
|
|
Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at %sunset_cv05.php:%d) in %sunset_cv05.php on line %d
|
|
Array
|
|
ok
|