Annotation of embedaddon/php/tests/output/ob_implicit_flush_basic_001.phpt, revision 1.1

1.1     ! misho       1: --TEST--
        !             2: Test ob_implicit_flush() function : check return value (always null).
        !             3: --FILE--
        !             4: <?php
        !             5: /* Prototype  : proto void ob_implicit_flush([int flag])
        !             6:  * Description: Turn implicit flush on/off and is equivalent to calling flush() after every output call 
        !             7:  * Source code: main/output.c
        !             8:  * Alias to functions: 
        !             9:  */
        !            10: 
        !            11: echo "*** Testing ob_implicit_flush() : check return value ***\n";
        !            12: 
        !            13: var_dump(ob_implicit_flush());
        !            14: var_dump(ob_implicit_flush(true));
        !            15: var_dump(ob_implicit_flush(false));
        !            16: 
        !            17: echo "Done";
        !            18: ?>
        !            19: --EXPECTF--
        !            20: *** Testing ob_implicit_flush() : check return value ***
        !            21: NULL
        !            22: NULL
        !            23: NULL
        !            24: Done

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