Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
213 views
in Technique[技术] by (71.8m points)

php - 显示一个数字到小数点后两位(Show a number to two decimal places)

What's the correct way to round a PHP string to two decimal places?

(将PHP字符串四舍五入到小数点后两位的正确方法是什么?)

$number = "520"; // It's a string from a database

$formatted_number = round_to_2dp($number);

echo $formatted_number;

The output should be 520.00 ;

(输出应为520.00 ;)

How should the round_to_2dp() function definition be?

(round_to_2dp()函数定义应该如何?)

  ask by Rich Bradshaw translate from so

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

You can use number_format() :

(您可以使用number_format() :)

return number_format((float)$number, 2, '.', '');

Example:

(例:)

$foo = "105";
echo number_format((float)$foo, 2, '.', '');  // Outputs -> 105.00

This function returns a string .

(该函数返回一个字符串 。)


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...