About the problem of sprintf intercepting decimals

WBOY
Release: 2016-10-23 00:00:03
Original
1324 people have browsed it

Question: Keep 1 decimal place, do not round, fill in 0 when it is an integer

Many people say to use sprintf('%.1f',$str);, but there are still problems with the results.
Finally, this method was used to solve the problem: echo sprintf('%.1f', floor( $str));


Copy after login

Didn’t you say you don’t want to round? Why is it that when rounding, 5 is not included but 6 is included?
But other functions number_format($str) are all included at 5. Why is this?

Related labels:
php
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!