mirror of
https://github.com/php/php-src.git
synced 2024-12-04 23:34:25 +08:00
79b73d1218
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.
48 lines
1.0 KiB
PHP
48 lines
1.0 KiB
PHP
--TEST--
|
|
Test session_cache_expire() function : variation
|
|
--SKIPIF--
|
|
<?php include('skipif.inc'); ?>
|
|
--FILE--
|
|
<?php
|
|
|
|
ob_start();
|
|
|
|
/*
|
|
* Prototype : int session_cache_expire([int $new_cache_expire])
|
|
* Description : Return current cache expire
|
|
* Source code : ext/session/session.c
|
|
*/
|
|
|
|
echo "*** Testing session_cache_expire() : variation ***\n";
|
|
|
|
var_dump(ini_get("session.cache_expire"));
|
|
var_dump(session_cache_expire());
|
|
var_dump(ini_get("session.cache_expire"));
|
|
var_dump(session_cache_expire(1234567890));
|
|
var_dump(ini_get("session.cache_expire"));
|
|
var_dump(session_start());
|
|
var_dump(session_cache_expire());
|
|
var_dump(ini_get("session.cache_expire"));
|
|
var_dump(session_destroy());
|
|
var_dump(session_cache_expire());
|
|
var_dump(ini_get("session.cache_expire"));
|
|
|
|
echo "Done";
|
|
ob_end_flush();
|
|
?>
|
|
--EXPECTF--
|
|
*** Testing session_cache_expire() : variation ***
|
|
string(3) "180"
|
|
int(180)
|
|
string(3) "180"
|
|
int(180)
|
|
string(10) "1234567890"
|
|
bool(true)
|
|
int(1234567890)
|
|
string(10) "1234567890"
|
|
bool(true)
|
|
int(1234567890)
|
|
string(10) "1234567890"
|
|
Done
|
|
|