????JFIF??x?x????'
| Server IP : 79.136.114.73 / Your IP : 216.73.216.55 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/self/root/home/b8009/php-5.6.22/ext/standard/tests/math/ |
Upload File : |
--TEST--
Test number_format() - multiple character separator support
--FILE--
<?php
$values = array(1234.5678,
-1234.5678,
1234.6578e4,
-1234.56789e4,
0x1234CDEF,
02777777777,
"123456789",
"123.456789",
"12.3456789e1",
null,
true,
false);
echo " number_format tests.....multiple character decimal point\n";
for ($i = 0; $i < count($values); $i++) {
$res = number_format($values[$i], 2, '·', ' ');
var_dump($res);
}
echo "\n number_format tests.....multiple character thousand separator\n";
for ($i = 0; $i < count($values); $i++) {
$res = number_format($values[$i], 2, '.' , ' ');
var_dump($res);
}
echo "\n number_format tests.....multiple character decimal and thousep\n";
for ($i = 0; $i < count($values); $i++) {
$res = number_format($values[$i], 2, '·' , ' ');
var_dump($res);
}
?>
--EXPECTF--
number_format tests.....multiple character decimal point
string(13) "1 234·57"
string(14) "-1 234·57"
string(18) "12 346 578·00"
string(19) "-12 345 678·90"
string(19) "305 450 479·00"
string(19) "402 653 183·00"
string(19) "123 456 789·00"
string(11) "123·46"
string(11) "123·46"
string(9) "0·00"
string(9) "1·00"
string(9) "0·00"
number_format tests.....multiple character thousand separator
string(15) "1 234.57"
string(16) "-1 234.57"
string(27) "12 346 578.00"
string(28) "-12 345 678.90"
string(28) "305 450 479.00"
string(28) "402 653 183.00"
string(28) "123 456 789.00"
string(6) "123.46"
string(6) "123.46"
string(4) "0.00"
string(4) "1.00"
string(4) "0.00"
number_format tests.....multiple character decimal and thousep
string(20) "1 234·57"
string(21) "-1 234·57"
string(32) "12 346 578·00"
string(33) "-12 345 678·90"
string(33) "305 450 479·00"
string(33) "402 653 183·00"
string(33) "123 456 789·00"
string(11) "123·46"
string(11) "123·46"
string(9) "0·00"
string(9) "1·00"
string(9) "0·00"