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

?

link|improve this question

feedback

6 Answers

up vote 3 down vote accepted
$numbers = array(1, 9, 14, 53, 112, 725, 1001, 1200);
foreach($numbers as $number) {
    printf('%d => %d'
            , $number
            , $number - $number % pow(10, floor(log10($number)))
            );
    echo "\n";
}

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.

link|improve this answer
Yeah, that works too: ideone.com/zHFqR – Tchalvak Apr 29 '11 at 16:50
feedback

If you do want to have a mathy solution, try this:

function floorToFirst($int) {
    if (0 === $int) return 0;

    $nearest = pow(10, floor(log($int, 10)));
    return floor($int / $nearest) * $nearest;
}
link|improve this answer
ideone.com/2DVGX Also works. – Tchalvak Apr 29 '11 at 16:54
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 :)

if($num === 0) return 0;
$digits = (int)(log10($num));
$num = (pow(10, $digits)) * floor($num/(pow(10, $digits)));

You could replace floor with round or ceil. Actually, if you wanted to round to the nearest, you could simplify the third line even more.

$num = round($num, -$digits);
link|improve this answer
Works apart from a division by zero warning when dealing with zero. – Tchalvak Apr 29 '11 at 17:01
Right, I thought I avoided division by 0 but I forgot about log of 0. – andrewtweber Apr 29 '11 at 17:06
feedback

Something like this:

$str = (string)$value;
echo (int)($str[0] . str_repeat('0', strlen($str) - 1));
link|improve this answer
Ouch, that's tricksy. And here I thought I was going to have to learn some math. – Tchalvak Apr 29 '11 at 16:23
Checked it and that works too: ideone.com/BVgSV – Tchalvak Apr 29 '11 at 16:57
1  
-1 using strings as a substitute for basic math is never the right idea – BlueRaja - Danny Pflughoeft Apr 29 '11 at 17:14
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

function significant($number){
    $digits = count($number);
    if($digits >= 2){
        $newNumber = substr($number,0,1);
        $digits--;
        for($i = 0; $i < $digits; $i++){
            $newNumber = $newNumber . "0";
        }
    }
    return $newNumber;
}
link|improve this answer
feedback

A math based alternative:

$mod = pow(10, intval(round(log10($value) - 0.5))); 
$answer = ((int)($value / $mod)) * $mod;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.