Annotation of embedaddon/php/ext/session/tests/session_cache_limiter_variation1.phpt, revision 1.1
1.1 ! misho 1: --TEST--
! 2: Test session_cache_limiter() function : variation
! 3: --SKIPIF--
! 4: <?php include('skipif.inc'); ?>
! 5: --INI--
! 6: session.cache_limiter=nocache
! 7: --FILE--
! 8: <?php
! 9:
! 10: ob_start();
! 11:
! 12: /*
! 13: * Prototype : string session_cache_limiter([string $cache_limiter])
! 14: * Description : Get and/or set the current cache limiter
! 15: * Source code : ext/session/session.c
! 16: */
! 17:
! 18: echo "*** Testing session_cache_limiter() : variation ***\n";
! 19:
! 20: var_dump(session_cache_limiter());
! 21: var_dump(session_start());
! 22: var_dump(session_cache_limiter());
! 23: var_dump(session_cache_limiter("public"));
! 24: var_dump(session_cache_limiter());
! 25: var_dump(session_destroy());
! 26: var_dump(session_cache_limiter());
! 27:
! 28: echo "Done";
! 29: ob_end_flush();
! 30: ?>
! 31: --EXPECTF--
! 32: *** Testing session_cache_limiter() : variation ***
! 33: string(7) "nocache"
! 34: bool(true)
! 35: string(7) "nocache"
! 36: string(7) "nocache"
! 37: string(6) "public"
! 38: bool(true)
! 39: string(6) "public"
! 40: Done
! 41:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>