“PHP rund bis zur nächsten 10” Code-Antworten

PHP -Runde zur ganzen Zahl

$int = 8.998988776636;
round($int) //Will always be 9

$int = 8.344473773737377474;
round($int) //will always be 8
jbirch8865

PHP -Runde

//round up to nearest integer
echo(ceil(0.60) . "<br>");
//result 1
Warrior

PHP -Runde


<?php
echo 'Rounding modes with 9.5' . PHP_EOL;
var_dump(round(9.5, 0, PHP_ROUND_HALF_UP));
var_dump(round(9.5, 0, PHP_ROUND_HALF_DOWN));
var_dump(round(9.5, 0, PHP_ROUND_HALF_EVEN));
var_dump(round(9.5, 0, PHP_ROUND_HALF_ODD));

echo 'Rounding modes with 8.5' . PHP_EOL;
var_dump(round(8.5, 0, PHP_ROUND_HALF_UP));
var_dump(round(8.5, 0, PHP_ROUND_HALF_DOWN));
var_dump(round(8.5, 0, PHP_ROUND_HALF_EVEN));
var_dump(round(8.5, 0, PHP_ROUND_HALF_ODD));
?>

Tough Tarsier

PHP rund bis zur nächsten 10

$number = ceil($input / 10) * 10;
Horrible Heron

PHP Runde nächste Hälfte

$x = floor($x * 2) / 2;
Poised Pelican

Ähnliche Antworten wie “PHP rund bis zur nächsten 10”

Fragen ähnlich wie “PHP rund bis zur nächsten 10”

Weitere verwandte Antworten zu “PHP rund bis zur nächsten 10” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen