Annotation of embedaddon/php/tests/lang/func_num_args.001.phpt, revision 1.1.1.1

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

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