Annotation of embedaddon/php/ext/session/tests/session_cache_expire_variation2.phpt, revision 1.1

1.1     ! misho       1: --TEST--
        !             2: Test session_cache_expire() function : variation
        !             3: --SKIPIF--
        !             4: <?php include('skipif.inc'); ?>
        !             5: --FILE--
        !             6: <?php
        !             7: 
        !             8: ob_start();
        !             9: 
        !            10: /* 
        !            11:  * Prototype : int session_cache_expire([int $new_cache_expire])
        !            12:  * Description : Return current cache expire
        !            13:  * Source code : ext/session/session.c 
        !            14:  */
        !            15: 
        !            16: echo "*** Testing session_cache_expire() : variation ***\n";
        !            17: 
        !            18: ini_set("session.cache_expire", 360);
        !            19: var_dump(session_cache_expire());
        !            20: var_dump(session_cache_expire(1234567890));
        !            21: var_dump(session_cache_expire(180));
        !            22: var_dump(session_start());
        !            23: var_dump(session_cache_expire());
        !            24: var_dump(session_destroy());
        !            25: var_dump(session_cache_expire());
        !            26: 
        !            27: echo "Done";
        !            28: ob_end_flush();
        !            29: ?>
        !            30: --EXPECTF--
        !            31: *** Testing session_cache_expire() : variation ***
        !            32: int(360)
        !            33: int(360)
        !            34: int(1234567890)
        !            35: bool(true)
        !            36: int(180)
        !            37: bool(true)
        !            38: int(180)
        !            39: Done
        !            40: 
        !            41: 

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