Annotation of embedaddon/php/tests/lang/func_get_args.001.phpt, revision 1.1

1.1     ! misho       1: --TEST--
        !             2: func_get_args with no args
        !             3: --FILE--
        !             4: <?php
        !             5: 
        !             6: function foo()
        !             7: {
        !             8:        var_dump(func_get_args());      
        !             9: }
        !            10: foo();
        !            11: 
        !            12: ?>
        !            13: --EXPECT--
        !            14: array(0) {
        !            15: }

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