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.
41 lines
874 B
PHP
41 lines
874 B
PHP
--TEST--
|
|
Test session_save_path() function : variation
|
|
--SKIPIF--
|
|
<?php include('skipif.inc'); ?>
|
|
--INI--
|
|
session.save_handler=files
|
|
session.gc_probability=0
|
|
--FILE--
|
|
<?php
|
|
|
|
ob_start();
|
|
|
|
/*
|
|
* Prototype : string session_save_path([string $path])
|
|
* Description : Get and/or set the current session save path
|
|
* Source code : ext/session/session.c
|
|
*/
|
|
|
|
echo "*** Testing session_save_path() : variation ***\n";
|
|
|
|
ini_set("session.save_path", "/blah");
|
|
var_dump(session_save_path());
|
|
var_dump(session_start());
|
|
var_dump(session_save_path());
|
|
var_dump(session_destroy());
|
|
var_dump(session_save_path());
|
|
|
|
echo "Done";
|
|
ob_end_flush();
|
|
?>
|
|
--EXPECTF--
|
|
*** Testing session_save_path() : variation ***
|
|
string(5) "/blah"
|
|
|
|
Warning: session_start(): open(%s, O_RDWR) failed: No such file or directory (2) in %s on line %d
|
|
bool(true)
|
|
string(5) "/blah"
|
|
bool(true)
|
|
string(5) "/blah"
|
|
Done
|