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

1.1       misho       1: --TEST--
                      2: Bug #28800 (Incorrect string to number conversion for strings starting with 'inf')
                      3: --FILE--
                      4: <?php
                      5:        $strings = array('into', 'info', 'inf', 'infinity', 'infin', 'inflammable');
                      6:        foreach ($strings as $v) {
                      7:                echo ($v+0)."\n";
                      8:        }
                      9: ?>
                     10: --EXPECT--
                     11: 0
                     12: 0
                     13: 0
                     14: 0
                     15: 0
                     16: 0
                     17: 

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