File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / ext / session / tests / session_save_path_variation2.phpt
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Tue Feb 21 23:48:01 2012 UTC (12 years, 4 months ago) by misho
Branches: php, MAIN
CVS tags: v5_4_3elwix, v5_4_29p0, v5_4_29, v5_4_20p0, v5_4_20, v5_4_17p0, v5_4_17, v5_3_10, HEAD
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(ini_get("session.save_path"));
var_dump(session_start());
var_dump(ini_get("session.save_path"));
var_dump(session_destroy());
var_dump(ini_get("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

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>