Annotation of embedaddon/php/ext/standard/tests/strings/bug29538.phpt, revision 1.1

1.1     ! misho       1: --TEST--
        !             2: Bug #29538 (number_format and problem with 0)
        !             3: --FILE--
        !             4: <?php
        !             5:        echo number_format(0.25, 2, '', ''), "\n";
        !             6:        echo number_format(1234, 2, '', ',');
        !             7: ?>
        !             8: --EXPECT--
        !             9: 025
        !            10: 1,23400

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