1--TEST--
2Bug #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--
9025
101,23400
11