Annotation of embedaddon/php/ext/spl/tests/SplFixedArray_current_param.phpt, revision 1.1.1.1

1.1       misho       1: --TEST--
                      2: SplFixedArray::current() with a parameter. *BUG*
                      3: --CREDITS--
                      4: PHPNW Test Fest 2009 - Jordan Hatch
                      5: --FILE--
                      6: <?php
                      7: 
                      8: $array = new SplFixedArray( 3 );
                      9: 
                     10: $array[0] = "Hello";
                     11: $array[1] = "world";
                     12: $array[2] = "elePHPant";
                     13: 
                     14: foreach ( $array as $value ) {
                     15:        echo $array->current( array("this","should","not","execute") );
                     16: }
                     17: 
                     18: ?>
                     19: --EXPECTF--
                     20: Warning: SplFixedArray::current() expects exactly 0 parameters, 1 given in %s on line %d
                     21: 
                     22: Warning: SplFixedArray::current() expects exactly 0 parameters, 1 given in %s on line %d
                     23: 
                     24: Warning: SplFixedArray::current() expects exactly 0 parameters, 1 given in %s on line %d

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