File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / ext / session / tests / session_encode_variation8.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

    1: --TEST--
    2: Test session_encode() function : variation
    3: --SKIPIF--
    4: <?php include('skipif.inc'); ?>
    5: --INI--
    6: session.serialize_handler=blah
    7: --FILE--
    8: <?php
    9: 
   10: ob_start();
   11: 
   12: /* 
   13:  * Prototype : string session_encode(void)
   14:  * Description : Encodes the current session data as a string
   15:  * Source code : ext/session/session.c 
   16:  */
   17: 
   18: echo "*** Testing session_encode() : variation ***\n";
   19: 
   20: var_dump(session_start());
   21: $_SESSION["foo"] = 1234567890;
   22: $encoded = session_encode();
   23: var_dump(base64_encode($encoded));
   24: var_dump(session_destroy());
   25: 
   26: echo "Done";
   27: ob_end_flush();
   28: ?>
   29: --EXPECTF--
   30: *** Testing session_encode() : variation ***
   31: 
   32: Warning: session_start(): Cannot find serialization handler 'blah' - session startup failed in %s on line %d
   33: bool(false)
   34: 
   35: Warning: session_encode(): Cannot encode non-existent session in %s on line %d
   36: string(0) ""
   37: 
   38: Warning: session_destroy(): Trying to destroy uninitialized session in %s on line %d
   39: bool(false)
   40: Done

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