mirror of
https://github.com/php/php-src.git
synced 2025-08-18 06:58:55 +02:00

These hopefully test a reasonable set of basic, error and variations for the twenty or so session functions. Note however that they do not test all the session configuration settings, nor do they test anything with register_globals enabled.
61 lines
961 B
PHP
61 lines
961 B
PHP
--TEST--
|
|
Test session_start() function : variation
|
|
--SKIPIF--
|
|
<?php include('skipif.inc'); ?>
|
|
--FILE--
|
|
<?php
|
|
|
|
ob_start();
|
|
|
|
/*
|
|
* Prototype : bool session_start(void)
|
|
* Description : Initialize session data
|
|
* Source code : ext/session/session.c
|
|
*/
|
|
|
|
echo "*** Testing session_start() : variation ***\n";
|
|
|
|
session_start();
|
|
|
|
$_SESSION['colour'] = 'green';
|
|
$_SESSION['animal'] = 'cat';
|
|
$_SESSION['person'] = 'julia';
|
|
$_SESSION['age'] = 6;
|
|
|
|
var_dump($_SESSION);
|
|
var_dump(session_destroy());
|
|
var_dump($_SESSION);
|
|
session_start();
|
|
var_dump($_SESSION);
|
|
|
|
session_destroy();
|
|
echo "Done";
|
|
ob_end_flush();
|
|
?>
|
|
--EXPECTF--
|
|
*** Testing session_start() : variation ***
|
|
array(4) {
|
|
["colour"]=>
|
|
string(5) "green"
|
|
["animal"]=>
|
|
string(3) "cat"
|
|
["person"]=>
|
|
string(5) "julia"
|
|
["age"]=>
|
|
int(6)
|
|
}
|
|
bool(true)
|
|
array(4) {
|
|
["colour"]=>
|
|
string(5) "green"
|
|
["animal"]=>
|
|
string(3) "cat"
|
|
["person"]=>
|
|
string(5) "julia"
|
|
["age"]=>
|
|
int(6)
|
|
}
|
|
array(0) {
|
|
}
|
|
Done
|
|
|