Is there any slick way to round down to the nearest significant figure in php?
So:
0->0
9->9
10->10
17->10
77->70
114->100
745->700
1200->1000
?
|
Is there any slick way to round down to the nearest significant figure in php? So:
?
| ||||
|
feedback
|
Unfortunately this fails horribly when $number is 0, but it does produce the expected result for positive integers. And it is a math-only solution. | |||
|
feedback
|
|
If you do want to have a mathy solution, try this:
| ||||
|
feedback
|
|
Here's a pure math solution. This is also a more flexible solution if you ever wanted to round up or down, and not just down. And it works on 0 :)
You could replace
| |||||
feedback
|
|
Something like this:
| |||||||||
feedback
|
|
It's totally non-mathy, but I would just do this utilizing sting length... there's probably a smoother way to handle it but you could acomplish it with
| |||
|
feedback
|
|
A math based alternative:
| |||
|
feedback
|