File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / ext / session / tests / session_unregister_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_3_10, HEAD
php

    1: --TEST--
    2: Test session_unregister() function : variation
    3: --SKIPIF--
    4: <?php include('skipif.inc'); ?>
    5: --FILE--
    6: <?php
    7: 
    8: ob_start();
    9: 
   10: /* 
   11:  * Prototype : bool session_unregister(string $name)
   12:  * Description : Unregister a global variable from the current session
   13:  * Source code : ext/session/session.c 
   14:  */
   15: 
   16: echo "*** Testing session_unregister() : variation ***\n";
   17: 
   18: var_dump(session_start());
   19: var_dump($_SESSION);
   20: $_SESSION["foo"] = "Hello World!";
   21: var_dump($_SESSION);
   22: var_dump(session_unregister("foo"));
   23: var_dump($_SESSION);
   24: var_dump(session_destroy());
   25: var_dump($_SESSION);
   26: 
   27: echo "Done";
   28: ob_end_flush();
   29: ?>
   30: --EXPECTF--
   31: *** Testing session_unregister() : variation ***
   32: bool(true)
   33: array(0) {
   34: }
   35: array(1) {
   36:   ["foo"]=>
   37:   string(12) "Hello World!"
   38: }
   39: 
   40: Deprecated: Function session_unregister() is deprecated in %s on line %d
   41: bool(true)
   42: array(0) {
   43: }
   44: bool(true)
   45: array(0) {
   46: }
   47: Done

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