当前位置:Gxlcms > PHP教程 > <pclass="foot">&copy什么意思解决方案

<pclass="foot">&copy什么意思解决方案

时间:2021-07-01 10:21:17 帮助过:8人阅读

©什么意思

©, 这个 >©是什么意思?


===================================================

string number_format ( float $number , int $decimals = 0 , string $dec_point = '.' , string $thousands_sep = ',' )

number
你要格式化的数字
decimals
要保留的小数位数
dec_point
指定小数点显示的字符
thousands_sep
指定千位分隔符显示的字符 // 这一句是什么意思?千位分隔符是什么意思?我在php文档中看到。
原文“ http://www.php.com/number_format

分享到: 更多


------解决方案--------------------
©


千位分隔符
123,456,789
------解决方案--------------------


$number = 1234.56;

// english notation (default)
$english_format_number = number_format($number);
// 1,235

// French notation
$nombre_format_francais = number_format($number, 2, ',', ' ');
// 1 234,56

$number = 1234.5678;

// english notation without thousands separator
$english_format_number = number_format($number, 2, '.', '');
// 1234.57

?>

人气教程排行